web3-plugin-chainstack
The Chainstack Web3.js plugin provides a seamless integration for interacting with the Chainstack platform through various functions. This plugin allows users to access organization, project, network, node, and identity details. By utilizing this plugin, developers can easily retrieve information from the Chainstack platform. Additionally this Plugin allows to use Chainstack provider with credentials.
Here are some key functions for interacting with the Chainstack platform API:
- Using password protected Chainstack provider.
- getOrganization: Retrieve organization details.
- getProjects: Get details of projects.
- getProject: Obtain specific project details.
- getNetworks: Retrieve network details.
- getNetwork: Get details of a specific network.
- getNodes: Access node details.
- getNode: Retrieve information about a specific node.
- getIdentities: Get identity details.
- getIdentity: Obtain information about a specific identity.
Plugin usage by the users
At your typescript project first run:
yarn add web3 @chainsafe/web3-plugin-chainstack
Here is how to use the plugin:
import { Web3 } from 'web3';
import { ChainstackPlugin } from '@chainsafe/web3-plugin-chainstack';
async function main() {
const web3 = new Web3("https://nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/");
const chainstackAuth = {
apiKey: 'API_KEY',
};
web3.registerPlugin(new ChainstackPlugin(chainstackAuth));
const nodesInfo = await web3.chainstack.getNodes();
}
Features
- Password protected provider:
For using Chainstack password protected provider create Chainstack Auth object for plugin as:
const web3 = new Web3();
const userAuth: ChainstackAuth = {
username: 'user',
password: 'pass',
};
const chainstackPlugin = new ChainstackPlugin('https://ethereum-mainnet.core.chainstack.com', userAuth);
web3.registerPlugin(chainstackPlugin);
const result = await web3.eth.getBlockNumber();
- Chainstack platform functions:
For interacting with Chainstack platform API first create plugin with API key as:
const web3 = new Web3();
const userAuth: ChainstackAuth = {
apiKey: 'key'
};
const chainstackPlugin = new ChainstackPlugin(userAuth);
web3.registerPlugin(chainstackPlugin);
const project = await web3.chainstack.getProject('PROJ_ID');
console.log(project);
Following functions are avalible in for interacting with Chainstack platform API:
getOrganization
getProjects
getProject
getNetworks
getNetwork
getNodes
getNode
getIdentities
getIdentity
Testing
For Unit tests:
Run: yarn test:unit
For E2E tests:
Add following environment variables:
CS_KEY
: its for Chainstack API Key, You can generate one from: https://console.chainstack.com/user/settings/api-keys
CS_USER
: User name for Chainstack provider
CS_PASS
: User password for Chainstack provider
The environment variables can be saved to .env
file at the root.
Once environment variables are set:
Run: yarn test:e2e
Publish a new version to the npm registry
Run: yarn build && npm publish --access public
Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT