UNPKG

wowok_agent

Version:

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

12 lines 480 B
/** * Provides permission lookup for an address: * not only the permission table, but also the administrator or Builder identity. */ import { PermissionAnswer } from 'wowok'; export interface PermissionQuery { permission_object: string; address: string; } export declare const query_permission_json: (json: string) => Promise<string>; export declare const query_permission: (query: PermissionQuery) => Promise<PermissionAnswer>; //# sourceMappingURL=permission.d.ts.map