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) • 414 B
TypeScript
import { Signer } from "ethers";
import { type GasPriceOptions } from "../utils";
export interface CancelMarketplaceOrderOptions extends GasPriceOptions {
/** Pre-fetched order data. If not provided, will be fetched from the API */
order?: any;
}
export default function cancelMarketplaceOrder(axieId: number, signer: Signer, skyMavisApiKey: string, options?: CancelMarketplaceOrderOptions): Promise<any>;