This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: migrate tt utils modules to core (#4)
* fix: migrate tt utils modules to core * feat: enable direct export for each tradetrust modules * fix: migrate generateProvider method from tt-verify/utils to tradetrust-core/utils/provider * fix: remove maticmum from list of supported networks * test: remove unused assertions from analytic unit tests * test: replace ganache with hardhat node for test blockchain
- Loading branch information
Showing
27 changed files
with
7,320 additions
and
6,418 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
INFURA_API_KEY= | ||
OKLINK_API_KEY= | ||
STABILITY_API_KEY= |
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 |
---|---|---|
|
@@ -17,8 +17,6 @@ dist/ | |
|
||
# Logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# OS generated files | ||
.DS_Store | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
require('@nomiclabs/hardhat-ethers') | ||
|
||
module.exports = { | ||
networks: { | ||
hardhat: { | ||
chainId: 1337, | ||
accounts: { | ||
mnemonic: | ||
'indicate swing place chair flight used hammer soon photo region volume shuffle', | ||
}, | ||
}, | ||
}, | ||
} |
Oops, something went wrong.