System Components
Managers
function transfer(
uint256 amount, // amount (in atomic units)
uint16 recipientChain, // chain ID (Wormhole formatted)
bytes32 recipient // recipient address (Wormhole formatted)
) external payable nonReentrant whenNotPaused returns (uint64) function quoteDeliveryPrice(
uint16 recipientChain, // chain ID (Wormhole formatted)
bytes memory transceiverInstructions // extra instructions for Transceivers (Transceiver-dependent on whether extra instructions are used/accepted)
) public view returns (uint256[] memory, uint256) function setPeer(
uint16 peerChainId, // chain ID (Wormhole formatted)
bytes32 peerContract, // peer NTT Manager address (Wormhole formatted)
uint8 decimals, // token decimals on the peer chain
uint256 inboundLimit // inbound rate limit (in atomic units)
) public onlyOwnerTransceivers

Last updated
Was this helpful?

