diff --git a/packages/types/src/interfaces/fungibles/runtime.ts b/packages/types/src/interfaces/fungibles/runtime.ts index 5a580ccc440f..b6525fc34b42 100644 --- a/packages/types/src/interfaces/fungibles/runtime.ts +++ b/packages/types/src/interfaces/fungibles/runtime.ts @@ -19,6 +19,21 @@ export const runtime: DefinitionsCall = { } }, version: 1 + }, + { + methods: { + query_account_balances: { + description: 'Returns the list of all `MultiAsset` that an `AccountId` has', + params: [ + { + name: 'account', + type: 'AccountId' + } + ], + type: 'Result' + } + }, + version: 2 } ] };