@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.
@@ -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
- BalanceOf(address) {
6004
+ balanceOf(address) {
6005
6005
  return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
6006
6006
  }
6007
- get Balance() {
6007
+ get balance() {
6008
6008
  return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
6009
6009
  }
6010
6010
  get balances() {
@@ -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
- BalanceOf(address: Address): Promise<bigint>;
54
- get Balance(): Promise<bigint>;
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
- BalanceOf(address) {
2150
+ balanceOf(address) {
2151
2151
  return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
2152
2152
  }
2153
- get Balance() {
2153
+ get balance() {
2154
2154
  return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
2155
2155
  }
2156
2156
  get balances() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.7.95",
3
+ "version": "1.7.96",
4
4
  "description": "Official javascript implementation",
5
5
  "private": false,
6
6
  "exports": {