@stablecoin.xyz/core
v1.5.0
Published
Core TypeScript SDK for SBC Account Abstraction infrastructure
Maintainers
Readme
@stablecoin.xyz/core
Core SDK for the SBC App Kit – Account Abstraction for gasless transactions, paymaster integration, and smart account management.
Installation
npm install @stablecoin.xyz/core
# or
yarn add @stablecoin.xyz/core
# or
pnpm add @stablecoin.xyz/coreUsage Example
import { SbcAppKit } from '@stablecoin.xyz/core';
import { baseSepolia } from 'viem/chains';
const kit = new SbcAppKit({
apiKey: 'your-api-key',
chain: baseSepolia,
wallet: 'auto',
});
// Connect wallet, get account info, send user operations, etc.For full documentation and advanced usage, see the main SBC App Kit README.
