forked from zeropoolnetwork/zeropool-client-js
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Decentralized sequencer support (#182)
* Introducing memo version enum * Extra data struct * Passing new tx fields * Parsing new calldata format * Calldata length reference * Introducing calldataVersion optional field into the Pool config object * Fee estimating routines (proxy + prover fees) * Exporting TxFee * Fix memo parsing * Publishing beta * Hardcoding prover fee and proxy address, updating wasm lib * Fix issues (testing) * Introducing Proxy service object * Introducing Sequencer abstraction (Relayer | Proxy) * Fix issues * Updated pool config interface * Calculating min tx amount (1/20 of token by default) * Fetching proxy address and prover fee * Increasing beta version * Fix exports * Increasing beta verion * Removing ExtraItem interface * Updating wasm lib * Code review fixes * Increasing beta ver * Best proxy selection (by fee) * Fix * Introducing prover fee * Prioritizing sequencers from the outside * Increasing beta: 6.0.0-beta6 * Job monitoring improvements * pendingDeltaIndex field processing (sequencer/info endpoint) * New dd abi * Moving DD decoding function [wip] * Decoding DD calldata * Fix typo --------- Co-authored-by: Alexander Filippov <[email protected]>
- Loading branch information
Showing
23 changed files
with
1,158 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "zkbob-client-js", | ||
"version": "5.5.3", | ||
"version": "6.0.0", | ||
"description": "zkBob integration library", | ||
"repository": "[email protected]:zkBob/libzkbob-client-js.git", | ||
"author": "Dmitry Vdovin <[email protected]>", | ||
|
@@ -30,8 +30,8 @@ | |
"graphql": "16.7.1", | ||
"hdwallet-babyjub": "^0.0.2", | ||
"idb": "^7.0.0", | ||
"libzkbob-rs-wasm-web": "1.6.0", | ||
"libzkbob-rs-wasm-web-mt": "1.6.0", | ||
"libzkbob-rs-wasm-web": "1.7.0-beta5", | ||
"libzkbob-rs-wasm-web-mt": "1.7.0-beta5", | ||
"promise-throttle": "^1.1.2", | ||
"regenerator-runtime": "^0.13.9", | ||
"tronweb": "^5.3.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.