UNPKG

n8n-nodes-wax

Version:

n8n Community Node Package for the WAX Blockchain

16 lines (15 loc) 526 B
import { ICollectionRow } from './RpcCache'; import RpcApi from './index'; export default class RpcCollection { private readonly api; readonly name: string; private readonly _data; constructor(api: RpcApi, name: string, data?: ICollectionRow, cache?: boolean); author(): Promise<string>; allowNotify(): Promise<boolean>; authorizedAccounts(): Promise<string[]>; notifyAccounts(): Promise<string[]>; marketFee(): Promise<number>; data(): Promise<any>; toObject(): Promise<object>; }