From dc7e03384d48b26d639d8c23769889b08cdcd3d1 Mon Sep 17 00:00:00 2001 From: Owen Hu <103096885+owen-reorg@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:38:44 +0800 Subject: [PATCH 1/2] feat: add Tether USDT to testnet whitelist --- bot.testnet.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.testnet.toml b/bot.testnet.toml index 6cdd46d..d6e800c 100644 --- a/bot.testnet.toml +++ b/bot.testnet.toml @@ -35,5 +35,6 @@ whitelist-l2-token-list = [ "0xCF712f20c85421d00EAa1B6F6545AaEEb4492B75", # USDT "0x845E27B8A4ad1Fe3dc0b41b900dC8C1Bb45141C3", # USDC "0xf46896fbEf6478eaCcFB1C815915daa7e6f87b22", # DAI - "0x2C58b64b4BA448A9b60e9398E58d17F1824da962" # tBEP20 + "0x2C58b64b4BA448A9b60e9398E58d17F1824da962", # tBEP20 + "0xBA15af85B7Dd7BF17b61c357fA73104959acbd18" # Tether USDT ] From b270517a2efc4478944b5ee27dc792e29498fda6 Mon Sep 17 00:00:00 2001 From: Owen Hu <103096885+owen-reorg@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:52:53 +0800 Subject: [PATCH 2/2] fix: replace opbnb testnet public url --- contracts/test/L2StandardBridgeBot.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/test/L2StandardBridgeBot.t.sol b/contracts/test/L2StandardBridgeBot.t.sol index 04095b7..551790d 100644 --- a/contracts/test/L2StandardBridgeBot.t.sol +++ b/contracts/test/L2StandardBridgeBot.t.sol @@ -20,7 +20,7 @@ contract L2StandardBridgeBotTest is Test { event SentMessageExtension1(address indexed sender , uint256 value); function setUp() public { - opbnbMainnetFork = vm.createFork("https://opbnb-testnet-rpc.bnbchain.org"); + opbnbMainnetFork = vm.createFork("https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5"); vm.selectFork(opbnbMainnetFork); vm.rollFork(opbnbMainnetFork, 7125821); bot = new L2StandardBridgeBot(payable(deployer), withdrawFee);