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
8 lines (7 loc) • 639 B
TypeScript
import { Signer } from "ethers";
import { type GasPriceOptions } from "../utils";
export declare function approveMarketplaceContract(signer: Signer, options?: GasPriceOptions): Promise<any>;
export declare function approveWETH(signer: Signer, options?: GasPriceOptions): Promise<any>;
export declare function approveBatchTransfer(signer: Signer, batchTransferAddress: string, options?: GasPriceOptions): Promise<void>;
export declare function approveMaterialMarketplace(signer: Signer, options?: GasPriceOptions): Promise<any>;
export declare function approveConsumableMarketplace(signer: Signer, options?: GasPriceOptions): Promise<any>;