Build Intent-based Cross-Chain Solutions With Router Chain
Build highly customizable Dapps based on your needs
Build with intentsA LAYER-1 BLOCKCHAIN ENABLING CHAIN ABSTRACTION
Router Chain Achieves Chain Abstraction by offering a state engine capable of reading and modifying states on any blockchain
Router Chain Achieves Chain Abstraction by offering a state engine capable of reading and modifying states on any blockchain
Ultimate Chain Abstraction
A POS L1 leveraging Tendermint’s BFT, compatible with EVM and other VMs
Router ChainCross-chain Asset Transfer
An ultra-low latency bridge supporting cross-chain swaps on 30+ blockchains
Router NitroSimplifying Cross-chain Intents
A plug-&-play infra enabling cross-chain functionality for dApps
Router CCIFBuild highly customizable Dapps based on your needs
Build with intentsBuild bridges to seamlessly connect any blockchains of your choice. Offer customized experience to your users!
Build an omnichain token (eg: stablecoins) to offer a seamless UX!
Build any dApp with seamless cross-chain functionalities. Imagine, build, ship!
Build an interoperable money market across multiple chains!
Build a cross-chain airdrop aggregator to allow users to farm the most promising airdrops.
Check out how you can build innovative cross-chain dApps with Router.
function iPing(
string calldata destChainId,
string calldata destinationContractAddress,
string calldata str,
bytes calldata requestMetadata
) public payable {
currentRequestId++;
bytes memory packet = abi.encode(currentRequestId, str);
bytes memory requestPacket = abi.encode(destinationContractAddress, packet);
gatewayContract.iSend{ value: msg.value }(
1, 0, string(""), destChainId, requestMetadata, requestPacket
);
emit NewPing(currentRequestId);
}