We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 674bbf0 commit b9e6d53Copy full SHA for b9e6d53
packages/orchestration/src/orchestration-api.ts
@@ -234,10 +234,18 @@ export interface OrchestrationAccountCommon {
234
*/
235
getAddress: () => CosmosChainAddress;
236
237
- /** @returns an array of amounts for every balance in the account. */
+ /**
238
+ * @returns an array of amounts for every balance in the account.
239
+ *
240
+ * @throws when prohibited (see `icqEnabled` in {@link CosmosChainInfo})
241
+ */
242
getBalances: () => Promise<DenomAmount[]>;
243
- /** @returns the balance of a specific denom for the account. */
244
245
+ * @returns the balance of a specific denom for the account.
246
247
248
249
getBalance: (denom: DenomArg) => Promise<DenomAmount>;
250
251
/**
0 commit comments