A simple TypeScript API client for the Solar Blockchain.
npm install @solarnetwork/client``ts
import { Connection } from "@arkecosystem/client";
const init = async () => {
const connection: Connection = new Connection("https://sxp.mainnet.sh/api");
console.log(await connection.api("blocks").all())
};
init();
``
This project exists thanks to all the people who contribute.