axie-tools
Version:
TypeScript SDK for building Axie Infinity trading bots and AI agents on Ronin network. Programmatic marketplace operations for Axies, Materials, and Consumables (buy/sell/delist), batch transfers, floor price detection, and wallet management. Includes int
5 lines (4 loc) • 373 B
TypeScript
import { Signer } from "ethers";
import { type GasPriceOptions } from "./utils";
export declare function transferAxie(signer: Signer, addressTo: string, axieId: string | number, options?: GasPriceOptions): Promise<any>;
export declare function batchTransferAxies(signer: Signer, addressTo: string, axieIds: Array<string | number>, options?: GasPriceOptions): Promise<any>;