@avalabs/vm-module-types 2.0.0 → 2.1.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 +3 -1
- package/dist/balance.d.ts +3 -1
- package/package.json +1 -1
package/dist/balance.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Network, Storage } from './common.cjs';
|
|
2
2
|
import { Error } from './error.cjs';
|
|
3
3
|
import { TokenType, NetworkContractToken, NetworkToken } from './token.cjs';
|
|
4
|
-
import { Erc20TokenBalance, PChainBalance, XChainBalances } from '@avalabs/glacier-sdk';
|
|
4
|
+
import { Erc20TokenBalance, PChainBalance, XChainBalances, NftTokenMetadataStatus } from '@avalabs/glacier-sdk';
|
|
5
5
|
|
|
6
6
|
type GetBalancesParams = {
|
|
7
7
|
addresses: string[];
|
|
@@ -130,10 +130,12 @@ interface NftTokenWithBalance extends Omit<NetworkTokenWithBalance, 'type' | 'de
|
|
|
130
130
|
name: string;
|
|
131
131
|
symbol: string;
|
|
132
132
|
tokenId: string;
|
|
133
|
+
chainId: number;
|
|
133
134
|
tokenUri: string;
|
|
134
135
|
collectionName: string;
|
|
135
136
|
updatedAt?: number;
|
|
136
137
|
metadata?: {
|
|
138
|
+
indexStatus?: NftTokenMetadataStatus;
|
|
137
139
|
description?: string;
|
|
138
140
|
lastUpdatedTimestamp?: number;
|
|
139
141
|
properties?: string;
|
package/dist/balance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Network, Storage } from './common.js';
|
|
2
2
|
import { Error } from './error.js';
|
|
3
3
|
import { TokenType, NetworkContractToken, NetworkToken } from './token.js';
|
|
4
|
-
import { Erc20TokenBalance, PChainBalance, XChainBalances } from '@avalabs/glacier-sdk';
|
|
4
|
+
import { Erc20TokenBalance, PChainBalance, XChainBalances, NftTokenMetadataStatus } from '@avalabs/glacier-sdk';
|
|
5
5
|
|
|
6
6
|
type GetBalancesParams = {
|
|
7
7
|
addresses: string[];
|
|
@@ -130,10 +130,12 @@ interface NftTokenWithBalance extends Omit<NetworkTokenWithBalance, 'type' | 'de
|
|
|
130
130
|
name: string;
|
|
131
131
|
symbol: string;
|
|
132
132
|
tokenId: string;
|
|
133
|
+
chainId: number;
|
|
133
134
|
tokenUri: string;
|
|
134
135
|
collectionName: string;
|
|
135
136
|
updatedAt?: number;
|
|
136
137
|
metadata?: {
|
|
138
|
+
indexStatus?: NftTokenMetadataStatus;
|
|
137
139
|
description?: string;
|
|
138
140
|
lastUpdatedTimestamp?: number;
|
|
139
141
|
properties?: string;
|