Documentation
Typescript SDK

@boltbunny

Boltbunny offer Aptos development tools to reduce costs and lower entry barriers, boosting efficiency and supporting the Aptos ecosystem.

Regist and get your SECRET_KEY here (opens in a new tab).

Packages

@boltbunny/ts-sdk

Installation

pnpm install @boltbunny/ts-sdk

Usage

import { BoltBunny } from '@boltbunny/ts-sdk'
 
const bbClient = new BoltBunny({
	APISecretKey: <YOUR_API_SECRET_KEY>,
	network: 'mainnet' | 'testnet'
})
 
const txn: SimpleTransaction = await aptos.transaction.build.simple({
   ...
});
 
const signature = await walletCore.signTransaction(txn);
const result: any = await bbClient.sendTransaction({
   signature: signature.bcsToHex().toString(),
   transaction: txn.rawTransaction.bcsToHex().toString(),
});