Quickstart Guide
Building smart contracts for the Canto EVM is the same as doing so for Ethereum or any other EVM-compatible chain, with the only difference being the network itself.
RPC URL:
https://canto.slingshot.finance/
Chain ID: 7700
Canto EVM:
Canto EVM and Native:
RPC URL:
https://canto-testnet.plexnode.wtf
Chain ID: 7701
Explorer: https://testnet.tuber.build/ Alternative Testnet Explorer URL: https://canto-test.dex.guru/
When building frontends or other applications that require on-chain data, you'll likely want to use a library to retrieve that data.
const ethers = require('ethers')
const provider = new ethers.providers.JsonRpcProvider("https://canto.slingshot.finance")
async function printCurrentBlock() {
console.log(await provider.getBlockNumber())
}
printCurrentBlock()
In case you're new to Solidity development, here are step-by-step instructions on how you can deploy your first contract on Canto using Remix:
The first step in deploying a smart contract on Canto is writing the contract's source code in Solidity. To do this, create a new file in your Remix workspace:

Name the file as desired with the
.sol
extension and begin writing your code. You can also use source code from contracts that are already deployed on Ethereum.For this example, let's copy and paste the following source code based on the official Solidity documentation:
pragma solidity 0.8.17;
contract Example {
uint storedData;
function set(uint x) public {
storedData = x;
}
function get() public view returns (uint) {
return storedData;
}
}
Once your code is ready, hit Ctrl+S to compile your smart contract.
To deploy your smart contract, start by making sure you have MetaMask installed and connected to Canto. Since this contract is for testing purposes, we'll connect to the Canto testnet.
Returning to Remix, navigate to the deployment tab, which is the fifth icon down on the vertical menu. Click on the environment drop-down box and select Injected Provider - Metamask:

A MetaMask prompt will appear asking you to connect your wallet to Remix. As always, make sure you are comfortable with the permissions that are being requested and click Connect.
Once you've connected your wallet, you'll see your account address under Account. Make sure this is where you want to deploy your contract from and then hit Deploy.
If your smart contract uses constructor arguments, enter them in the field adjacent to the Deploy button before attempting to deploy your contract.
After you hit Deploy, a MetaMask prompt will appear with a contract deployment transaction. Confirm the transaction.
As soon as the block is mined, your smart contract will be live on the Canto EVM. You can find the address of your smart contract at the bottom left of the Remix interface under Deployed Contracts, or by looking for the recipient of the contract deployment transaction in your wallet or on the block explorer.
Last modified 2mo ago