UNPKG

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

7 lines (6 loc) 370 B
import { Wallet } from "ethers"; import { type ICreateMaterialOrderData } from "../material"; import type { ICreateOrderResult } from "../marketplace"; export declare function createMaterialMarketplaceOrder(orderData: ICreateMaterialOrderData, accessToken: string, signer: Wallet, skyMavisApiKey: string, options?: { nonce?: string; }): Promise<ICreateOrderResult>;