eosnetworkfoundation / evm-bridge-contracts

Contracts to support the trustless bridge of the EOS EVM
MIT License
1 stars 2 forks source link

Make some address related settings runtime config instead of hardcoding them #46

Closed yarkinwho closed 3 weeks ago

yarkinwho commented 1 month ago
 string  public linkedEOSAccountName;
 address public linkedEOSAddress;
 address public evmAddress;

these three in the solidity contract.

This will make life easier if we want to deploy the bridge against evm on other accounts.

yarkinwho commented 1 month ago

for evmAddress, maybe get it from coinbase instead of make it a config.