-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sim replace frontend rpc calls with genlayerjs (#600)
* install genlayer js * contract queries OK * get transaction with genlayer client * update transaction unit tests * accounts and client working * extract shorten address hook, update unit tests * cleanup todos * cleanup * cleanup comments * fix pkg lock * allow returning null tx * update params for leader only * update genlayer-js and use new contract schema methods * bump genlayer-js version to include support for leaderOnly param * fix typing with genlayer-js/genvm * update genlayer-js * fix cleanup local tx logic * fix unit test * remove redundant typing and use genlayer-js types as truth * fix precommit * bump genlayer-js version * update leaderOnly casing in contract queries * regen package lock * bumb genlayer-js version --------- Co-authored-by: Den <[email protected]> Co-authored-by: Cristiam Da Silva <[email protected]>
- Loading branch information
1 parent
78ff5cf
commit ff5fcb7
Showing
27 changed files
with
1,657 additions
and
504 deletions.
There are no files selected for viewing
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 was deleted.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
export * from './useUniqueId'; | ||
export * from './useEventTracking'; | ||
export * from './useRpcClient'; | ||
export * from './useWallet'; | ||
export * from './useDb'; | ||
export * from './useWebSocketClient'; | ||
export * from './useInputMap'; | ||
export * from './useContractQueries'; | ||
export * from './useFileName'; | ||
export * from './useSetupStores'; | ||
export * from './useGenlayer'; | ||
export * from './useShortAddress'; | ||
export * from './useConfig'; | ||
export * from './useTransactionListener'; |
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.