UNPKG

axie-tools

Version:

TypeScript library and CLI tool for interacting with Axie Infinity marketplace and NFTs on Ronin network. Features marketplace operations (buy/sell/delist), batch transfers, and wallet information.

4 lines (3 loc) 276 B
import { type Signer } from "ethers"; export declare function transferAxie(signer: Signer, addressTo: string, axieId: string | number): Promise<any>; export declare function batchTransferAxies(signer: Signer, addressTo: string, axieIds: Array<string | number>): Promise<any>;