@avalabs/vm-module-types 3.9.4 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/balance.d.cts +6 -0
- package/dist/balance.d.ts +6 -0
- package/package.json +1 -1
package/dist/balance.d.cts
CHANGED
|
@@ -10,6 +10,12 @@ type GetBalancesParams = {
|
|
|
10
10
|
customTokens?: NetworkContractToken[];
|
|
11
11
|
currency: string;
|
|
12
12
|
storage?: Storage;
|
|
13
|
+
/**
|
|
14
|
+
* When true, only the balances for the provided `customTokens` are fetched,
|
|
15
|
+
* queried directly from the chain (RPC) rather than an indexed source. Used
|
|
16
|
+
* to back-fill custom tokens that an indexed balance provider doesn't cover.
|
|
17
|
+
*/
|
|
18
|
+
customTokensOnly?: boolean;
|
|
13
19
|
};
|
|
14
20
|
type TokenBalanceData = {
|
|
15
21
|
type: TokenType;
|
package/dist/balance.d.ts
CHANGED
|
@@ -10,6 +10,12 @@ type GetBalancesParams = {
|
|
|
10
10
|
customTokens?: NetworkContractToken[];
|
|
11
11
|
currency: string;
|
|
12
12
|
storage?: Storage;
|
|
13
|
+
/**
|
|
14
|
+
* When true, only the balances for the provided `customTokens` are fetched,
|
|
15
|
+
* queried directly from the chain (RPC) rather than an indexed source. Used
|
|
16
|
+
* to back-fill custom tokens that an indexed balance provider doesn't cover.
|
|
17
|
+
*/
|
|
18
|
+
customTokensOnly?: boolean;
|
|
13
19
|
};
|
|
14
20
|
type TokenBalanceData = {
|
|
15
21
|
type: TokenType;
|