@radixdlt/radix-engine-toolkit
Version:
A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger
16 lines (15 loc) • 501 B
TypeScript
export interface MessageValidationConfig {
maxPlaintextMessageLength: bigint;
maxEncryptedMessageLength: bigint;
maxMimeTypeLength: bigint;
maxDecryptors: bigint;
}
export interface ValidationConfig {
networkId: number;
maxNotarizedPayloadSize: bigint;
minTipPercentage: number;
maxTipPercentage: number;
maxEpochRange: bigint;
messageValidation: MessageValidationConfig;
}
export declare const defaultValidationConfig: (networkId: number) => ValidationConfig;