// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; const definitions: OverrideBundleDefinition = { rpc: { proposals: { getProjectKitty: { description: 'Get the escrow address associated with a project', params: [{ name: 'project_id', type: 'u32' }], type: 'AccountId' } } }, types: [ { // on all versions minmax: [0, undefined], types: { Address: 'MultiAddress', LookupSource: 'MultiAddress' } }] }; export default definitions;