Integrations
Clients
Ethers.js

ethers.js

ethers.js (opens in a new tab) is a JavaScript library for developers working with EVM-compatible blockchains, offering an easy way to interact with the Superseed blockchain.

This library facilitates the interaction with smart contracts deployed on Superseed.

Installation

npm install --save ethers

Setup

To make ethers.js available in your project, preface your code with the following import statement:

const ethers = require("ethers");

Connecting to Superseed Sepolia Testnet

For connections to the Superseed Sepolia network, initialize an ethers.js JsonRpcProvider object with the Superseed Sepolia RPC URL:

const ethers = require("ethers");
 
const url = "https://sepolia.superseed.xyz";
const provider = new ethers.providers.JsonRpcProvider(url);