@leofcoin/chain 1.7.95 → 1.7.96
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/exports/browser/chain.js +2 -2
- package/exports/chain.d.ts +2 -2
- package/exports/chain.js +2 -2
- package/package.json +1 -1
package/exports/browser/chain.js
CHANGED
|
@@ -6001,10 +6001,10 @@ class Chain extends VersionControl {
|
|
|
6001
6001
|
transfer(from, to, amount) {
|
|
6002
6002
|
return this.call(addresses.nativeToken, 'transfer', [from, to, amount]);
|
|
6003
6003
|
}
|
|
6004
|
-
|
|
6004
|
+
balanceOf(address) {
|
|
6005
6005
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
|
|
6006
6006
|
}
|
|
6007
|
-
get
|
|
6007
|
+
get balance() {
|
|
6008
6008
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
|
|
6009
6009
|
}
|
|
6010
6010
|
get balances() {
|
package/exports/chain.d.ts
CHANGED
|
@@ -50,8 +50,8 @@ export default class Chain extends VersionControl {
|
|
|
50
50
|
staticCall(contract: Address, method: string, parameters?: any[]): Promise<any>;
|
|
51
51
|
mint(to: Address, amount: bigint): Promise<any>;
|
|
52
52
|
transfer(from: Address, to: Address, amount: bigint): Promise<any>;
|
|
53
|
-
|
|
54
|
-
get
|
|
53
|
+
balanceOf(address: Address): Promise<bigint>;
|
|
54
|
+
get balance(): Promise<bigint>;
|
|
55
55
|
get balances(): Promise<{
|
|
56
56
|
[index: string]: bigint;
|
|
57
57
|
}>;
|
package/exports/chain.js
CHANGED
|
@@ -2147,10 +2147,10 @@ class Chain extends VersionControl {
|
|
|
2147
2147
|
transfer(from, to, amount) {
|
|
2148
2148
|
return this.call(addresses.nativeToken, 'transfer', [from, to, amount]);
|
|
2149
2149
|
}
|
|
2150
|
-
|
|
2150
|
+
balanceOf(address) {
|
|
2151
2151
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
|
|
2152
2152
|
}
|
|
2153
|
-
get
|
|
2153
|
+
get balance() {
|
|
2154
2154
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
|
|
2155
2155
|
}
|
|
2156
2156
|
get balances() {
|