/** * Rust U128 max * See https://cheats.rs/ for more info */ export declare const UNSIGNED_128_MAX = 340282366920938463463374607431768211455n; /** * Product IDs used for price feed and node selection * * - DECRYPTION (0): Used for decryption operations * - SIGN (1): Used for signing operations * - LIT_ACTION (2): Used for Lit Actions execution * - SIGN_SESSION_KEY (3): Used for sign session key operations */ export declare const PRODUCT_IDS: { readonly DECRYPTION: 0n; readonly SIGN: 1n; readonly LIT_ACTION: 2n; readonly SIGN_SESSION_KEY: 3n; };