UNPKG

wowok_agent

Version:

Create, collaborate, and transact on your own terms with the AI-driven web3 collaboration protocol.

69 lines 1.76 kB
import { TransactionBlock, PassportObject, VotingGuard, WithdrawFee } from 'wowok'; import { CallBase, CallResult, Namedbject } from "./base"; export interface DisputeData { order: string; order_token_type: string; description: string; votable_proposition: string[]; fee: string | number; } export interface CallArbitration_Data { type_parameter: string; object?: { address: string; } | { namedNew?: Namedbject; }; permission?: { address: string; } | { namedNew?: Namedbject; description?: string; }; description?: string; endpoint?: string; fee?: string | number; fee_treasury?: { address: string; } | { namedNew?: Namedbject; description?: string; }; arb_new?: { data: DisputeData; guard?: string | 'fetch'; namedNew?: Namedbject; }; arb_withdraw_fee?: { arb?: string; data: WithdrawFee; }; arb_vote?: { arb?: string; voting_guard?: string; agrees: number[]; }; arb_arbitration?: { arb?: string; feedback: string; indemnity?: string | number; }; guard?: string; voting_guard?: { op: 'add' | 'set'; data: VotingGuard[]; } | { op: 'remove'; guards: string[]; } | { op: 'removeall'; }; bPaused?: boolean; } export declare class CallArbitration extends CallBase { data: CallArbitration_Data; constructor(data: CallArbitration_Data); call(account?: string): Promise<CallResult>; protected operate(txb: TransactionBlock, passport?: PassportObject, account?: string): Promise<void>; } //# sourceMappingURL=arbitration.d.ts.map