UNPKG

axie-ronin-ethers-js-tools

Version:

A set of functions that make it easier for developers to interact with their Axies on the Ronin network and the maketplace.

10 lines (9 loc) 261 B
interface IActivityData { axieId: string; priceFrom: string; priceTo: string; duration: string; txHash: string; } export default function createActivity(action: string, data: IActivityData, accessToken: string): Promise<boolean>; export {};