# The type of bridge. Defines set of contracts to be deployed.
BRIDGE_MODE=AMB_ERC_TO_ERC
# The private key hex value of the account responsible for contracts
# deployments and initial configuration. The account's balance must contain
# funds from both networks.
DEPLOYMENT_ACCOUNT_PRIVATE_KEY=
# Extra gas added to the estimated gas of a particular deployment/configuration transaction
# E.g. if estimated gas returns 100000 and the parameter is 0.2,
# the transaction gas limit will be (100000 + 100000 * 0.2) = 120000
DEPLOYMENT_GAS_LIMIT_EXTRA=0.2
# The "gasPrice" parameter set in every deployment/configuration transaction on
# ----------------------- 5 gwei
HOME_DEPLOYMENT_GAS_PRICE=5000000000
# The "gasPrice" parameter set in every deployment/configuration transaction on
# Foreign network (in Wei).
# -------------------------- 5 gwei
FOREIGN_DEPLOYMENT_GAS_PRICE=5000000000
# The timeout limit to wait for receipt of the deployment/configuration
GET_RECEIPT_INTERVAL_IN_MILLISECONDS=3000
# The name of the ERC677 token to be deployed on the Home network.
BRIDGEABLE_TOKEN_NAME=YourTokenName
# The symbol name of the ERC677 token to be deployed on the Home network.
BRIDGEABLE_TOKEN_SYMBOL=YourTokenSymbol
# The number of supportable decimal digits after the "point" in the ERC677 token
# to be deployed on the Home network.
BRIDGEABLE_TOKEN_DECIMALS=18
# The RPC channel to a Home node able to handle deployment/configuration
HOME_RPC_URL=https://sokol.rpc.endpoint/
# Address on Home network with permissions to change parameters of the bridge contract.
# For extra security we recommended using a multi-sig wallet contract address here.
# Address on Home network with permissions to upgrade the bridge contract
HOME_UPGRADEABLE_ADMIN=0x
# The daily transaction limit in Wei. As soon as this limit is exceeded, any
# transaction which requests to relay assets will fail.
# -------------- 100'000 tokens
HOME_DAILY_LIMIT=100000000000000000000000
# The maximum limit for one transaction in Wei. If a single transaction tries to
# relay funds exceeding this limit it will fail. HOME_MAX_AMOUNT_PER_TX must be
# less than HOME_DAILY_LIMIT.
# -------------------- 10'000 tokens
HOME_MAX_AMOUNT_PER_TX=10000000000000000000000
# The minimum limit for one transaction in Wei. If a transaction tries to relay
# funds below this limit it will fail. This is required to prevent dryout
# -------------------- 0.01 tokens
HOME_MIN_AMOUNT_PER_TX=10000000000000000
# The RPC channel to a Foreign node able to handle deployment/configuration
FOREIGN_RPC_URL=https://kovan.rpc.endpoint/
# Address on Foreign network with permissions to change parameters of the bridge contract.
# For extra security we recommended using a multi-sig wallet contract address here.
# Address on Foreign network with permissions to upgrade the bridge contract and the
# bridge validator contract.
FOREIGN_UPGRADEABLE_ADMIN=0x
# The daily limit in Wei. As soon as this limit is exceeded, any transaction
# requesting to relay assets will fail.
# ----------------- 500'000 tokens
FOREIGN_DAILY_LIMIT=500000000000000000000000
# The maximum limit per one transaction in Wei. If a transaction tries to relay
# funds exceeding this limit it will fail. FOREIGN_MAX_AMOUNT_PER_TX must be less
# than FOREIGN_DAILY_LIMIT.
# ----------------------- 100'000 tokens
FOREIGN_MAX_AMOUNT_PER_TX=100000000000000000000000
# The minimum limit for one transaction in Wei. If a transaction tries to relay
# funds below this limit it will fail.
# ----------------------- 0.01 tokens
FOREIGN_MIN_AMOUNT_PER_TX=10000000000000000
# The address of the existing ERC20/ERC677 compatible token in the Foreign network to
# be exchanged to the ERC20/ERC677 token deployed on Home.
ERC20_TOKEN_ADDRESS=0xff94183659f549D6273349696d73686Ee1d2AC83
# The address of the existing AMB bridge in the Home network that will be used to pass messages
# to the Foreign network.
HOME_AMB_BRIDGE=0xFe446bEF1DbF7AFE24E81e05BC8B271C1BA9a560
# The address of the existing AMB bridge in the Foreign network that will be used to pass messages
FOREIGN_AMB_BRIDGE=0xFe446bEF1DbF7AFE24E81e05BC8B271C1BA9a560
# The gas limit that will be used in the execution of the message passed to the mediator contract
# in the Foreign network.
HOME_MEDIATOR_REQUEST_GAS_LIMIT=500000
# The gas limit that will be used in the execution of the message passed to the mediator contract
FOREIGN_MEDIATOR_REQUEST_GAS_LIMIT=500000
# The api url of an explorer to verify all the deployed contracts in Home network.
HOME_EXPLORER_URL=https://blockscout.com/poa/sokol/api
# The api url of an explorer to verify all the deployed contracts in Foreign network.
FOREIGN_EXPLORER_URL=https://api-kovan.etherscan.io/api
# The api key of the explorer api, if required, used to verify all
# the deployed contracts in Foreign network.
FOREIGN_EXPLORER_API_KEY=YOUR-ETHERSCAN-API-KEY-HERE