Overview
The Fungible Token Connector consists of 4 contracts:
- ft_connector
- bridge_token_deployer
- bridge_token
- permissions_manager
All of these contracts need to be installed on both chains.
For installing the bridge and all the prerequisties take a look on the section Running a Bridge
In this description we assume that a bridge between NEAR Testnet and a Calimero shard are set up.
Setting up the ft_connectors
On the ft_connector, the owner of the contract needs to set the locker account, which is the ft_connector contract on the other chain. This info is used to check when proving that a transaction/receipt happend on the other network, that it happened on the corresponding ft_connector contract.
Bridging FT from NEAR to Calimero (when original token is on NEAR)
In blockchain terminology here we are locking FTs on NEAR and minting wFT (wrapped FT) on Calimero.
- Call ft_transfer_call on FT contract on NEAR (lock on NEAR)
- this step essentially locks a fungible token on the NEAR side, as a user/dapp sends FTs to the ft_connector contract on NEAR
- Call NEAR RPC for tx status
- inside this transaction is the receipt with the event denoting a lock happened, and we are going to prove this on Calimero
- Call Calimero light client for current height
- the current_height on the light client contract on Calimero needs to be higher than the block height where the lock of FTs happened on source chain
- Call NEAR RPC for light client proof
- this is all the proof data from the archival node on NEAR needed to be able to prove tx actually passed successfuly
- Call mint() on Calimero ft_connector, these are all the steps that happen:
- If this is first time transferring that FT then deploy the bridge_token on Calimero (since wFT does not exist yet on Calimero)
- Proves outcome (fails if proof invalid), if proved mints wFT on Calimero
- get_metadata for wFT on Calimero, if empty: get_metadata on NEAR, and set_metadata on Calimero
- map_contract on NEAR ft_connector, map the Calimero FT contract with NEAR FT contract
- Congrats, wFT exists now on Calimero
Bridging back FT from Calimero to NEAR (burn the wrapped FT)
In blockchain terminology here we are burning/withdrawing wFTs on Calimero and unlocking FT on NEAR.
- Call view_mapping on ft_connector on Calimero in order to get the name of the wFT since transfer initiator maybe knows only the FT name on NEAR
- Call withdraw on the wFT (bridge_token) on Calimero
- this is the transaction we will need to prove that it actually happened
- this method burns the wanted amount of wFT on Calimero
- Call Calimero RPC for tx status
- we want to prove the receipt denoting a burn of a specific wFT happened with the given amount, and to whom it should be unlocked on NEAR side
- Call NEAR light client for current height
- needs to be higher than the block height where the withdraw of wFTs happened on destination chain
- Call Calimero RPC for light client proof
- Call unlock() on NEAR ft_connector with the obtained proof and a valid block height
- Proves outcome and if proved unlocks FT on NEAR
- Congrats, FT is now unlocked on the source network
Bridging between Calimero and NEAR when original asset is on Calimero
Original asset on Calimero means that it was first time ever minted on Calimero, it never existed on NEAR. This means that bridging to NEAR would bring a wrapped FT on NEAR. All steps from the previous two sections apply, its only reversed.
Automatic bridging
All of these steps are automated with the Calimero Bridge service. The user/dapp needs only to make a ft_transfer_call when locking FTs on a chain, the bridge service will do all the magic
and the wrapped asset will appear on the other chain. Similarly, when someone wants to unlock the funds, they simply need to make a withdraw call on the ft contract, and the bridge service will automatically do its thing and all the components are updated automatically. The tokens will be unlocked on the other side if tokens were burnt on the starting chain.