Welcome to Kriptonio, Next-Gen Gasless Mobile Wallet & SDK
npm install @kriptonio/sdk
Access gasless non-custodial SDK, iOS and Android mobile apps, Smart Contract management, Web3 infrastructure and more
Quick Start
import { KriptonioSdk, ChainId } from '@kriptonio/sdk';
const sdk = new KriptonioSdk({
accessToken: 'your-access-token',
});
const wallet = await sdk.wallet.generate({
chainId: ChainId.Polygon,
type: 'kernel',
});
const hash = wallet.sendTransaction({
to: wallet.address,
value: 0n,
});