@argonprotocol/localchain 1.0.16 → 1.0.17

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -0
  2. package/package.json +7 -7
package/index.d.ts CHANGED
@@ -778,6 +778,8 @@ export interface VoteCreationOptions {
778
778
  votesAddress?: string;
779
779
  /** What's the minimum amount of tax we should wait for before voting on blocks */
780
780
  minimumVoteAmount?: number;
781
+ /** How many votes to create per tick loop */
782
+ votesPerTick?: number;
781
783
  }
782
784
 
783
785
  export interface ZoneRecord {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argonprotocol/localchain",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
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": "1.0.16",
43
+ "@argonprotocol/mainchain": "1.0.17",
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",
@@ -77,10 +77,10 @@
77
77
  },
78
78
  "packageManager": "yarn@4.1.0",
79
79
  "optionalDependencies": {
80
- "@argonprotocol/localchain-darwin-x64": "1.0.16",
81
- "@argonprotocol/localchain-darwin-arm64": "1.0.16",
82
- "@argonprotocol/localchain-win32-x64-msvc": "1.0.16",
83
- "@argonprotocol/localchain-linux-x64-gnu": "1.0.16",
84
- "@argonprotocol/localchain-linux-arm64-gnu": "1.0.16"
80
+ "@argonprotocol/localchain-darwin-x64": "1.0.17",
81
+ "@argonprotocol/localchain-darwin-arm64": "1.0.17",
82
+ "@argonprotocol/localchain-win32-x64-msvc": "1.0.17",
83
+ "@argonprotocol/localchain-linux-x64-gnu": "1.0.17",
84
+ "@argonprotocol/localchain-linux-arm64-gnu": "1.0.17"
85
85
  }
86
86
  }