diff --git a/eth-custodian/Makefile b/eth-custodian/Makefile index ffadea5..526af32 100644 --- a/eth-custodian/Makefile +++ b/eth-custodian/Makefile @@ -1,6 +1,6 @@ .PHONY: compile test -NETWORK=ropsten +NETWORK=sepolia NEAR_NETWORK=testnet NEAR_EVM_ACCOUNT=aurora NEAR_ACCOUNT= diff --git a/eth-custodian/contracts/EthCustodianProxy.sol b/eth-custodian/contracts/EthCustodianProxy.sol index 2878603..cef75ee 100644 --- a/eth-custodian/contracts/EthCustodianProxy.sol +++ b/eth-custodian/contracts/EthCustodianProxy.sol @@ -100,7 +100,7 @@ contract EthCustodianProxy is function pauseAll() external onlyRole(PAUSABLE_ADMIN_ROLE) { uint flags = PAUSED_DEPOSIT_TO_EVM | PAUSED_DEPOSIT_TO_NEAR | - PAUSED_WITHDRAW | + PAUSED_WITHDRAW_POST_MIGRATION | PAUSED_WITHDRAW_PRE_MIGRATION; ethCustodianImpl.adminPause(flags); _pause(flags); diff --git a/eth-custodian/scripts/json/ethereum-config.json b/eth-custodian/scripts/json/ethereum-config.json index 77022ec..1836846 100644 --- a/eth-custodian/scripts/json/ethereum-config.json +++ b/eth-custodian/scripts/json/ethereum-config.json @@ -1,7 +1,7 @@ { - "proverAddress": "0xb3df48b0ea3e91b43226fb3c5eb335b7e3d76faa", - "clientAddress": "0xb289c6e6c98644dc9f6a03c044564bc8558b6087", - "ethConnectorAddress": "0x9006a6D7d08A388Eeea0112cc1b6b6B15a4289AF", + "proverAddress": "0x847821f85b675c5fce9fe53cf79f623d1a039579", + "clientAddress": "0x202cdf10bfa45a3d2190901373edd864f071d707", + "ethConnectorAddress": "0xe0320b199863D7f6D5bBa62741aACB312110DEf7", "nearEvmAccount": "aurora", - "bridgeFactoryAccount": "f.ropsten.testnet" + "bridgeFactoryAccount": "factory.sepolia.testnet" }