Javascript SDK for interacting with the Kriptonio Platform.
Supports browser, server and react-native.
npm install @kriptonio/sdk
import { ChainId, KriptonioSdk } from '@kriptonio/sdk';
const sdk = new KriptonioSdk({
accessToken: 'your-access-token',
});
const wallet = await sdk.wallet.generate({
chainId: ChainId.BaseSepolia,
type: 'kernel',
});
const hash = await wallet.sendTransaction({
to: wallet.address,
value: 0n,
});
https://github.com/kriptonio/sdk/tree/main/packages/sdk/docs