Steps:
Install Zeus if not installed, zeus is used to unbox or install all the necessary dependencies to compile and deploy the necessary contracts.
Ensure you're using node version 16, IPFS can be picky with other versions
Unbox atomictokenpeg
box
Copy mkdir atomictokenpeg
cd atomictokenpeg
zeus box create
zeus unbox atomictokenpeg
Before compiling atomictokenpeg.cpp
you must update the atomic assets constant here
Copy const name NFT_ACCOUNT = "bridgeassets" _n ;
Compile contracts
Create 3 Kylin and 3 Mumbai Testnet accounts using these guides:
Kylin Accounts:
Kylin token contract account (token being bridged eosio.token.cpp
)
Kylin bridge contract account (atomictokenpeg.cpp
)
Kylin test Account no contract
Mumbai Testnet Accounts
ERC721 Contract (atomicnft.sol
) with extensions
Mumbai bridge contract Account (atomictokenpeg.sol
)
Mumbai test Account no contract
Copy export KYLIN_BRIDGE_ACCOUNT = maticnftbrdg
export KYLIN_TOKEN_ACCOUNT = bridgeassets
export KYLIN_TEST_ACCOUNT = natdeveloper
export KYLIN_ENDPOINT = https://kylin.eosn.io
Import our keys into zeus to deploy contracts to Kylin, or can use cleos as well
Zeus cleos
Copy zeus key import $KYLIN_BRIDGE_ACCOUNT --network kylin --active-private-key 5JB... --owner-private-key 5JB...
Copy # import owner private key
cleos wallet import --private-key 5JB...
# import active private key
cleos wallet import --private-key 5JB...
Create contract deployment files to migrate contracts to Kylin, located in ./zeus_boxes/contract-migrations-extensions/models/contract-deployments/
Copy zeus create contract-deployment atomictokenpeg $KYLIN_BRIDGE_ACCOUNT kylin
Migrate contracts to Kylin/Jungle
Zeus Migrate cleos set contract
Copy zeus migrate atomictokenpeg --network=kylin --creator $KYLIN_BRIDGE_ACCOUNT --no-reset --no-compile-all --creator-key=""
Copy # if migration fails
cd contracts/eos
cleos -u $KYLIN_ENDPOINT set contract $KYLIN_BRIDGE_ACCOUNT atomictokenpeg
cleos -u $KYLIN_ENDPOINT set contract $KYLIN_TOKEN_ACCOUNT eosio.token
If you use cleos to set the contract, be sure to set the eosio.code
permission level, see here
Stake for services
Now that we've prepared that part let's move onto staking DAPP for services. First stop is the faucet for some DAPP tokens here . Use the account that has the atomictokenpeg
contract set to it.
Stake to required services vRAM, LiquidHarmony Oracles, LiquidScheduler, LiquidLink
Using the DSP Portal we can see these packages, stake 10 DAPP to each (Amount to Stake ):
Below we'll select each package then stake for it.
vRAM LiquidHarmony LiquidScheduler LiquidLink
Copy export PROVIDER = uuddlrlrbass
export PACKAGE = ipfs2
export SERVICE = ipfsservice1
export QUANTITY = "10.0000 DAPP"
cleos -u $KYLIN_ENDPOINT push action dappservices selectpkg "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$PACKAGE\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
cleos -u $KYLIN_ENDPOINT push action dappservices stake "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$QUANTITY\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
Copy export PROVIDER = uuddlrlrbass
export PACKAGE = oracleservi2
export SERVICE = oracleservic
export QUANTITY = "10.0000 DAPP"
cleos -u $KYLIN_ENDPOINT push action dappservices selectpkg "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$PACKAGE\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
cleos -u $KYLIN_ENDPOINT push action dappservices stake "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$QUANTITY\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
Copy export PROVIDER = uuddlrlrbass
export PACKAGE = cronservice2
export SERVICE = cronservices
export QUANTITY = "10.0000 DAPP"
cleos -u $KYLIN_ENDPOINT push action dappservices selectpkg "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$PACKAGE\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
cleos -u $KYLIN_ENDPOINT push action dappservices stake "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$QUANTITY\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
Copy export PROVIDER = uuddlrlrbass
export PACKAGE = sign
export SERVICE = signfndspsvc
export QUANTITY = "10.0000 DAPP"
cleos -u $KYLIN_ENDPOINT push action dappservices selectpkg "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$PACKAGE\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
cleos -u $KYLIN_ENDPOINT push action dappservices stake "[\"$KYLIN_BRIDGE_ACCOUNT\",\"$PROVIDER\",\"$SERVICE\",\"$QUANTITY\"]" -p $KYLIN_BRIDGE_ACCOUNT@active
Use the command line login option, top right , this will auto-create the cleos commands for you!
Now let's head over to the EVM side.