Update README.md

This commit is contained in:
microwavedcola1 2022-01-10 07:21:03 +01:00 committed by GitHub
parent d06091807b
commit 363660c00a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 2 deletions

View File

@ -5,5 +5,32 @@ typsecript client for https://github.com/blockworks-foundation/voter-stake-regis
# development
node version v16.13.1
## TODO:
publish npm package under @blockworks-foundation
# installation
```
yarn add @blockworks-foundation/voter-stake-registry-client
```
# usage
```
import { Provider, Wallet } from '@project-serum/anchor';
import { Connection, Keypair } from '@solana/web3.js';
import { VsrClient } from '@blockworks-foundation/voter-stake-registry-client';
async function main() {
const options = Provider.defaultOptions();
const connection = new Connection('https://api.devnet.solana.com', options);
const wallet = new Wallet(Keypair.generate());
const provider = new Provider(connection, wallet, options);
const client = await VsrClient.connect(provider, true);
<img width="708" alt="image" src="https://user-images.githubusercontent.com/89031858/148725238-646198da-133b-4f13-af02-b48647073b7e.png">
}
main();
```