JS SDK
A plugin for working with the Graphite transactions.
Installation
npm install @atgraphite/web3-plugin
# or
yarn add @atgraphite/web3-pluginGetting Started
To use this plugin simply import it, and add register it to your web3 instance.
import { GraphitePlugin } from "@atgraphite/web3-plugin";
const NODE_URL = 'node url';
const web3 = new Web3(NODE_URL)
web3.eth.accounts.wallet.add(privateKey)
web3.registerPlugin(new GraphitePlugin(web3))You can use our nodes instead of node_url. They are available here.
And you're ready to go! There are 2 types of nodes, normal and anonymous. Read more about them here.
First time users
After registering the plugin, you need to activate you account:
await web3.graphite.activateAccount()which has a fee, more about that here.
To check the fee amount, use:
Interface
The following functions are accessible via web3.graphite.(*)
Last updated