Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add deployment scripts for tron network #34

Merged
merged 29 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e393a61
chore: update npm dependencies and add @openzeppelin/truffle-upgrades
OnahProsperity May 15, 2024
553f69e
chore: add Tron package, deployto shasta and update Tron network conf…
OnahProsperity May 15, 2024
a7ef695
chore: update Tron network configuration to use network ID 12002
OnahProsperity May 18, 2024
fc37c30
chore: remove commented code in setSupportedTokens.ts
OnahProsperity May 18, 2024
4e86a6e
chore: remove commented code in setSupportedTokens.ts
OnahProsperity May 18, 2024
20fc5d6
chore: added and deployed Gateway contract to tron network, with test…
OnahProsperity May 18, 2024
2633b1c
feat: add contract setting scripts + fix upgradeability
chibie May 18, 2024
34c683b
chore: add script to set supported institutions for Tron
OnahProsperity Jun 10, 2024
5084e11
feat: remove set institutions from V2
OnahProsperity Jun 10, 2024
53f0af0
chore: add @api/tron package and update Tron network configuration
OnahProsperity Jun 10, 2024
e6e4072
chore: tron lock files
OnahProsperity Jun 10, 2024
e6f6469
chore: Remove setSupportedInstitutions script for Tron
OnahProsperity Jun 10, 2024
0337fd7
chore: tron shasta upgrade to v2
OnahProsperity Jun 10, 2024
e268ea7
chore: fix conflits with base contract
OnahProsperity Jun 10, 2024
6590fb4
chore: update invalid institution test with allowance checks
OnahProsperity Jun 10, 2024
8d3398d
chore: add tron mainnet config
chibie Jun 11, 2024
e42281e
chore: update Tron network configuration and add support for Tron Mai…
OnahProsperity Jun 11, 2024
3211801
chore: remove unused SharedStructs library and institutions updates
OnahProsperity Jun 11, 2024
e4b6be0
chore: update gateway test and message hash to support institution code
OnahProsperity Jun 11, 2024
1948589
chore: clean unused code
chibie Jun 12, 2024
91c6458
chore: remove unused @api/tron package
OnahProsperity Jun 12, 2024
994e3d1
chore: update readme and package.json
OnahProsperity Jun 12, 2024
ac624bd
Merge branch 'tron' of https://github.com/paycrest/contracts into tron
OnahProsperity Jun 12, 2024
eb26777
Merge pull request #37 from paycrest/tron
chibie Jun 12, 2024
53e0df6
Merge branch 'main' into tronNetwork
chibie Jun 12, 2024
7c5bc5f
chore: update readme
chibie Jun 12, 2024
ef5ce9a
fix: resolve protocol fee split bug + update tests
chibie Jun 12, 2024
4110050
chore: update readme + flatten Gateway.sol + deploy on evm networks
chibie Jun 14, 2024
51df615
feat: deploy to evm mainnets
chibie Jun 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
DEPLOYER_PRIVATE_KEY=
TREASURY_ADDRESS=
AGGREGATOR_ADDRESS=

ETHERSCAN_API_KEY=
POLYGONSCAN_API_KEY=
BSCSCAN_API_KEY=
BASESCAN_API_KEY=
ARBISCAN_API_KEY=
BSCSCAN_API_KEY=

SHIELD3_API_KEY=

TREASURY_ADDRESS=
AGGREGATOR_ADDRESS=

TREASURY_ADDRESS_TRON=
AGGREGATOR_ADDRESS_TRON=
DEPLOYER_PRIVATE_KEY_TRON=
TRON_PRO_API_KEY=
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules
.env
.vscode
coverage
coverage.json
typechain
Expand All @@ -11,3 +12,7 @@ publicKey.txt
cache
# artifacts

# Tron Package
src/js/metacoin-config.js


Loading
Loading