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) • 378 B
TypeScript
import { Wallet } from "ethers";
import { type ICreateConsumableOrderData } from "../consumable";
import type { ICreateOrderResult } from "../marketplace";
export declare function createConsumableMarketplaceOrder(orderData: ICreateConsumableOrderData, accessToken: string, signer: Wallet, skyMavisApiKey: string, options?: {
nonce?: string;
}): Promise<ICreateOrderResult>;