diff --git a/README.md b/README.md index d200127..398cd06 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,18 @@ Deployment is done using Hardhat scripts npx hardhat run scripts/deploy.ts --network npx hardhat verify --network + +# for Tron network, +tronbox migrate -f 1 --to 1 --network ``` #### Upgrade proxy contract ```bash npx hardhat run scripts/upgrade.ts --network + +# for Tron network, +tronbox migrate -f 2 --to 2 --network ``` #### Owner configurations @@ -34,6 +40,13 @@ npx hardhat run scripts/setSupportedTokens.ts --network npx hardhat run scripts/updateProtocolAddresses.ts --network npx hardhat run scripts/updateProtocolFee.ts --network + +# for Tron network, +npx hardhat run scripts/tron/setSupportedTokens.ts + +npx hardhat run scripts/tron/updateProtocolAddresses.ts + +npx hardhat run scripts/tron/updateProtocolFee.ts ``` @@ -69,6 +82,18 @@ npx hardhat run scripts/updateProtocolFee.ts --network Gateway Implementation 0xD293fCd3dBc025603911853d893A4724CF9f70a0 + + + + + Tron Shasta + Gateway Proxy + TRpBoQ3mW8ePtJfbQq8FEcKNmCV5rioEL7 + + + Gateway Implementation + TFhQCQ3BUMTHRHy3hbitscQjzTjpHycdhZ + diff --git a/scripts/config.ts b/scripts/config.ts index ef6da2f..7bfad9a 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -159,7 +159,7 @@ const NETWORKS = { USDT: "TG3XXyExBkPp9nzdajDZsozEu4BkaSJozs", }, TREASURY_FEE_PERCENT: 100, // in BPS i.e 0.1% - GATEWAY_CONTRACT: "TRpBoQ3mW8ePtJfbQq8FEcKNmCV5rioEL7", //"TDJwpCwrWq6q1fU5jWxTZVaCJA1HJ4owXZ", + GATEWAY_CONTRACT: "TRpBoQ3mW8ePtJfbQq8FEcKNmCV5rioEL7", }, };