ETH BSC Swap Contracts are responsible for registering swap pairs and swapping assets between ETH and BSC.
-
Users register swap pair for erc20 token on ETH via ETHSwapAgent(
createSwapPair
) if token is not registered. -
Swap service will monitor the
SwapPairRegister
event and create swap pair on BSC:- create an BEP20 token on BSC
- record the relation between erc20 token and bep20 token.
Once swap pair is registered, users can swap tokens from ETH to BSC.
- Users call
swapETH2BSC
via ETHSwapAgent and specify erc20 token address, amount and swap fee. - Swap service will monitor the
SwapStarted
event and callfillETH2BSCSwap
via BSCSwapAgent to mint corresponding bep20 tokens to the same address that initiate the swap.
Once swap pair is registered, users can swap tokens from BSC to ETH.
- Users call
swapBSC2ETH
via BSCSwapAgent and specify bep20 token address, amount and swap fee. Bep20 tokens will be burned. - Swap service will monitor the
SwapStarted
event and callfillBSC2ETHSwap
via BSCSwapAgent to transfer corresponding erc20 tokens to the same address that initiate the swap.
-
Make a copy of
.env.template
named.env
-
Replace the
YOUR_INFURA_KEY
with the Infura API key of yours. -
Put the private keys in OWNER_PRIVKEY and ADMIN_PRIVKEY fields.
- OWNER_PRIVKEY is the key of the account deploying the smart contracts. This key will be used in backend to call the smart contract.
- ADMIN_PRIVKEY is the key of the admin account of the proxy contract.
Please keep the private keys in safe storage.
- Put the scanner API keys in ETHERSCAN_API_KEY and BSCSCAN_API_KEY fields.
Run the development network:
npm run testrpc
Deploy to development network:
npx truffle migrate --reset
Run tests:
npx truffle test
Run coverage:
npm run coverage
npx truffle migrate --network ropsten --reset
Please put the registerTx to ETH_REGISTER_TX in .env
npx truffle migrate --network bsctestnet --reset
BSC DVG token must give a minter role to the deployed BSCSwapAgentUpgradeableProxy contract.
npx truffle run verify ETHSwapAgentImpl --network ropsten
npx truffle run verify ETHSwapAgentUpgradeableProxy --network ropsten
npx truffle run verify BEP20TokenImplementation --network bsctestnet
npx truffle run verify BSCSwapAgentImpl --network bsctestnet
npx truffle run verify BSCSwapAgentUpgradeableProxy --network bsctestnet