@leofcoin/chain 1.3.11 → 1.3.12

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.
@@ -66200,6 +66200,10 @@ class Chain extends Contract {
66200
66200
  return this.#totalTransactions
66201
66201
  }
66202
66202
 
66203
+ get nativeCalls() {
66204
+ return this.#nativeCalls
66205
+ }
66206
+
66203
66207
  get totalSize() {
66204
66208
  return this.#totalSize
66205
66209
  }
@@ -66200,6 +66200,10 @@ class Chain extends Contract {
66200
66200
  return this.#totalTransactions
66201
66201
  }
66202
66202
 
66203
+ get nativeCalls() {
66204
+ return this.#nativeCalls
66205
+ }
66206
+
66203
66207
  get totalSize() {
66204
66208
  return this.#totalSize
66205
66209
  }
package/dist/chain.js CHANGED
@@ -821,6 +821,10 @@ class Chain extends Contract {
821
821
  return this.#totalTransactions
822
822
  }
823
823
 
824
+ get nativeCalls() {
825
+ return this.#nativeCalls
826
+ }
827
+
824
828
  get totalSize() {
825
829
  return this.#totalSize
826
830
  }
@@ -811,6 +811,10 @@ class Chain extends Contract {
811
811
  return this.#totalTransactions
812
812
  }
813
813
 
814
+ get nativeCalls() {
815
+ return this.#nativeCalls
816
+ }
817
+
814
818
  get totalSize() {
815
819
  return this.#totalSize
816
820
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.3.11",
3
+ "version": "1.3.12",
4
4
  "description": "Official javascript implementation",
5
5
  "main": "./dist/node.js",
6
6
  "module": "./dist/chain.esm",
package/src/chain.js CHANGED
@@ -84,6 +84,10 @@ export default class Chain extends Contract {
84
84
  return this.#totalTransactions
85
85
  }
86
86
 
87
+ get nativeCalls() {
88
+ return this.#nativeCalls
89
+ }
90
+
87
91
  get totalSize() {
88
92
  return this.#totalSize
89
93
  }