@avalabs/vm-module-types 0.7.2 → 0.7.3
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 +18 -12
- package/dist/balance.d.ts +18 -12
- package/package.json +1 -1
package/dist/balance.d.cts
CHANGED
|
@@ -77,15 +77,18 @@ interface TokenWithBalancePVM extends NetworkTokenWithBalance {
|
|
|
77
77
|
availableDisplayValue?: string;
|
|
78
78
|
availableCurrencyDisplayValue?: string;
|
|
79
79
|
utxos?: PChainBalance;
|
|
80
|
+
/**
|
|
81
|
+
* All values are represented in `nAvax`
|
|
82
|
+
*/
|
|
80
83
|
balancePerType: {
|
|
81
|
-
lockedStaked
|
|
82
|
-
lockedStakeable
|
|
83
|
-
lockedPlatform
|
|
84
|
-
atomicMemoryLocked
|
|
85
|
-
atomicMemoryUnlocked
|
|
86
|
-
unlockedUnstaked
|
|
87
|
-
unlockedStaked
|
|
88
|
-
pendingStaked
|
|
84
|
+
lockedStaked?: bigint;
|
|
85
|
+
lockedStakeable?: bigint;
|
|
86
|
+
lockedPlatform?: bigint;
|
|
87
|
+
atomicMemoryLocked?: bigint;
|
|
88
|
+
atomicMemoryUnlocked?: bigint;
|
|
89
|
+
unlockedUnstaked?: bigint;
|
|
90
|
+
unlockedStaked?: bigint;
|
|
91
|
+
pendingStaked?: bigint;
|
|
89
92
|
};
|
|
90
93
|
}
|
|
91
94
|
interface TokenWithBalanceAVM extends NetworkTokenWithBalance {
|
|
@@ -94,11 +97,14 @@ interface TokenWithBalanceAVM extends NetworkTokenWithBalance {
|
|
|
94
97
|
availableDisplayValue?: string;
|
|
95
98
|
availableCurrencyDisplayValue?: string;
|
|
96
99
|
utxos?: XChainBalances;
|
|
100
|
+
/**
|
|
101
|
+
* All values are represented in `nAvax`
|
|
102
|
+
*/
|
|
97
103
|
balancePerType: {
|
|
98
|
-
locked
|
|
99
|
-
unlocked
|
|
100
|
-
atomicMemoryUnlocked
|
|
101
|
-
atomicMemoryLocked
|
|
104
|
+
locked?: bigint;
|
|
105
|
+
unlocked?: bigint;
|
|
106
|
+
atomicMemoryUnlocked?: bigint;
|
|
107
|
+
atomicMemoryLocked?: bigint;
|
|
102
108
|
};
|
|
103
109
|
}
|
|
104
110
|
interface NftTokenWithBalance extends Omit<NetworkTokenWithBalance, 'type' | 'decimals' | 'coingeckoId'> {
|
package/dist/balance.d.ts
CHANGED
|
@@ -77,15 +77,18 @@ interface TokenWithBalancePVM extends NetworkTokenWithBalance {
|
|
|
77
77
|
availableDisplayValue?: string;
|
|
78
78
|
availableCurrencyDisplayValue?: string;
|
|
79
79
|
utxos?: PChainBalance;
|
|
80
|
+
/**
|
|
81
|
+
* All values are represented in `nAvax`
|
|
82
|
+
*/
|
|
80
83
|
balancePerType: {
|
|
81
|
-
lockedStaked
|
|
82
|
-
lockedStakeable
|
|
83
|
-
lockedPlatform
|
|
84
|
-
atomicMemoryLocked
|
|
85
|
-
atomicMemoryUnlocked
|
|
86
|
-
unlockedUnstaked
|
|
87
|
-
unlockedStaked
|
|
88
|
-
pendingStaked
|
|
84
|
+
lockedStaked?: bigint;
|
|
85
|
+
lockedStakeable?: bigint;
|
|
86
|
+
lockedPlatform?: bigint;
|
|
87
|
+
atomicMemoryLocked?: bigint;
|
|
88
|
+
atomicMemoryUnlocked?: bigint;
|
|
89
|
+
unlockedUnstaked?: bigint;
|
|
90
|
+
unlockedStaked?: bigint;
|
|
91
|
+
pendingStaked?: bigint;
|
|
89
92
|
};
|
|
90
93
|
}
|
|
91
94
|
interface TokenWithBalanceAVM extends NetworkTokenWithBalance {
|
|
@@ -94,11 +97,14 @@ interface TokenWithBalanceAVM extends NetworkTokenWithBalance {
|
|
|
94
97
|
availableDisplayValue?: string;
|
|
95
98
|
availableCurrencyDisplayValue?: string;
|
|
96
99
|
utxos?: XChainBalances;
|
|
100
|
+
/**
|
|
101
|
+
* All values are represented in `nAvax`
|
|
102
|
+
*/
|
|
97
103
|
balancePerType: {
|
|
98
|
-
locked
|
|
99
|
-
unlocked
|
|
100
|
-
atomicMemoryUnlocked
|
|
101
|
-
atomicMemoryLocked
|
|
104
|
+
locked?: bigint;
|
|
105
|
+
unlocked?: bigint;
|
|
106
|
+
atomicMemoryUnlocked?: bigint;
|
|
107
|
+
atomicMemoryLocked?: bigint;
|
|
102
108
|
};
|
|
103
109
|
}
|
|
104
110
|
interface NftTokenWithBalance extends Omit<NetworkTokenWithBalance, 'type' | 'decimals' | 'coingeckoId'> {
|