UNPKG

@protokol/guardian-crypto

Version:

Transaction Builders For Guardian Transaction Types

39 lines (38 loc) 811 B
export declare const amountSchema: { bignumber: { minimum: number; maximum: number; }; }; export declare const vendorFieldSchema: { anyOf: ({ type: string; format?: undefined; } | { type: string; format: string; })[]; }; export declare const groupNameSchema: { type: string; minLength: number; maxLength: number; }; export declare const permissionsSchema: { type: string; uniqueItems: boolean; items: { type: string; required: string[]; properties: { transactionType: { type: string; minimum: number; }; transactionTypeGroup: { type: string; minimum: number; }; }; }; };