Getting Started with SecretJS
Learn how to install and use SecretJS.
Overview
Installation
npm init -ynpm install secretjsSet up Secret Network Client
import { SecretNetworkClient, Wallet } from "secretjs";
const wallet = new Wallet("Your mnemonic words go here");
const secretjs = new SecretNetworkClient({
chainId: "pulsar-3",
url: "https://pulsar.lcd.secretnodes.com",
wallet: wallet,
walletAddress: wallet.address,
});Upload a Contract
Instantiate a Contract
Last updated
Was this helpful?