Skip to content
Quick Start
Welcome to Kriptonio, Gasless Non Custodial Web3 Platform
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,
});
 
const hash = wallet.sendTransaction({
  to: wallet.address,
  value: 0n,
});