Phantasma API
Constructor
Testnet Example
import { PhantasmaAPI } from "phantasma-sdk-ts";
const rpcUrl = "https://testnet.phantasma.info/rpc";
const peersUrl = "https://peers.phantasma.info/testnet-getpeers.json";
const api = new PhantasmaAPI(rpcUrl, peersUrl, "testnet");Mainnet Example
import { PhantasmaAPI } from "phantasma-sdk-ts";
const rpcUrl = "https://pharpc1.phantasma.info/rpc";
const peersUrl = "https://peers.phantasma.info/mainnet-getpeers.json";
const api = new PhantasmaAPI(rpcUrl, peersUrl, "mainnet");Last updated