Skip to main content

Mainnet EVM Part

EthersJS

Ethers.js is a compact Javascript library used for interacting with the Ethereum blockchain and other EVM compatible chains.

const  = require("ethers");

// URL of the RPC for the CrossFi Mainnet
const providerUrl = "https://rpc.mainnet.ms/";

// Creating a provider to interact with the blockchain

const provider = new ethers.JsonRpcProvider(providerUrl);
async function main() `);
}

main().catch((error) => {
console.error("Error connecting to the blockchain:", error);
});

Viem

Viem is a TypeScript library that offers type-safe modules for interacting with the Ethereum and other EVM compatible chains.

import  from 'viem';

export const crossfi = defineChain({
id: 4158,
name: 'CrossFi Mainet',
nativeCurrency: ,
rpcUrls: ,
},
blockExplorers: ,
},
});

const client = createPublicClient({
chain: crossfi,
transport: http(),
});

const blockNumber = await client.getBlockNumber();

export default `Block number: $`;