@newcoin-foundation/newcoin-sdk
Version:
SDK for Newcoin blockchain
10 lines (7 loc) • 361 B
text/typescript
import { NCO_BlockchainAPI, devnet_services, devnet_urls } from '../../src/index';
test('it should perform a test call correctly', async () => {
const api = new NCO_BlockchainAPI(devnet_urls, devnet_services);
const keyPair = await api.createKeyPair();
expect(keyPair.prv_key).toBeDefined();
expect(keyPair.pub_key).toBeDefined();
})