@argonprotocol/localchain 0.0.13 → 0.0.14
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/index.d.ts +3 -0
- package/index.js +1 -0
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -656,6 +656,9 @@ export enum TransactionType {
|
|
|
656
656
|
Consolidation = 3
|
|
657
657
|
}
|
|
658
658
|
|
|
659
|
+
/** Maximum tax amount that can be charged on a transfer */
|
|
660
|
+
export const TRANSFER_TAX_CAP: bigint
|
|
661
|
+
|
|
659
662
|
export interface VersionHost {
|
|
660
663
|
/** Datastore id is a 2-50 char string that uniquely identifies a domain. */
|
|
661
664
|
datastoreId: string
|
package/index.js
CHANGED
|
@@ -406,3 +406,4 @@ module.exports.NOTARIZATION_MAX_BLOCK_VOTES = nativeBinding.NOTARIZATION_MAX_BLO
|
|
|
406
406
|
module.exports.NOTARIZATION_MAX_DOMAINS = nativeBinding.NOTARIZATION_MAX_DOMAINS
|
|
407
407
|
module.exports.runCli = nativeBinding.runCli
|
|
408
408
|
module.exports.TransactionType = nativeBinding.TransactionType
|
|
409
|
+
module.exports.TRANSFER_TAX_CAP = nativeBinding.TRANSFER_TAX_CAP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argonprotocol/localchain",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "A nodejs binding to the Argon Localchain",
|
|
5
5
|
"bin": "cli.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@argonprotocol/mainchain": "0.0.
|
|
43
|
+
"@argonprotocol/mainchain": "0.0.14",
|
|
44
44
|
"@napi-rs/cli": "3.0.0-alpha.55",
|
|
45
45
|
"@types/http-proxy": "^1.17.14",
|
|
46
46
|
"@types/jest": "^29.5.11",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
},
|
|
62
62
|
"packageManager": "yarn@4.1.0",
|
|
63
63
|
"optionalDependencies": {
|
|
64
|
-
"@argonprotocol/localchain-darwin-x64": "0.0.
|
|
65
|
-
"@argonprotocol/localchain-darwin-arm64": "0.0.
|
|
66
|
-
"@argonprotocol/localchain-win32-x64-msvc": "0.0.
|
|
67
|
-
"@argonprotocol/localchain-linux-x64-gnu": "0.0.
|
|
68
|
-
"@argonprotocol/localchain-linux-arm64-gnu": "0.0.
|
|
64
|
+
"@argonprotocol/localchain-darwin-x64": "0.0.14",
|
|
65
|
+
"@argonprotocol/localchain-darwin-arm64": "0.0.14",
|
|
66
|
+
"@argonprotocol/localchain-win32-x64-msvc": "0.0.14",
|
|
67
|
+
"@argonprotocol/localchain-linux-x64-gnu": "0.0.14",
|
|
68
|
+
"@argonprotocol/localchain-linux-arm64-gnu": "0.0.14"
|
|
69
69
|
}
|
|
70
70
|
}
|