@protokol/notarization-crypto
Version:
Transaction Builders For Notarization Transaction Types
26 lines (25 loc) • 486 B
TypeScript
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 notarizationSchema: {
type: string;
required: string[];
properties: {
hash: {
type: string;
minLength: number;
};
};
};