import { ProtocolType } from '@hyperlane-xyz/provider-sdk'; /** * Test timeout for operations that require node startup and deployment */ export declare const DEFAULT_E2E_TEST_TIMEOUT = 100000; /** * Hyperlane Radix GitHub repository and version */ export declare const HYPERLANE_RADIX_GIT = "https://github.com/hyperlane-xyz/hyperlane-radix"; export declare const HYPERLANE_RADIX_VERSION = "1.1.0"; /** * Test private key for Radix local network * This matches the key used in CLI tests */ export declare const TEST_RADIX_PRIVATE_KEY = "0x8ef41fc20bf963ce18494c0f13e9303f70abc4c1d1ecfdb0a329d7fd468865b8"; /** * Test private key for Radix local network to test transactions sent * from an account that is not the default signer */ export declare const OTHER_RADIX_PRIVATE_KEY = "0xc2c13fcb59f6ee4ed9611ce44eefc6cdf62e6a575c09fb5c4db3e205001328c4"; /** * Test deployer address derived from TEST_RADIX_PRIVATE_KEY */ export declare const TEST_RADIX_DEPLOYER_ADDRESS = "account_loc12ytsy99ajzkwy7ce0444fs8avat7jy3fkj5mk64yz2z3yml6s7y7x3"; /** * Test deployer address derived from OTHER_RADIX_PRIVATE_KEY */ export declare const OTHER_TEST_RADIX_DEPLOYER_ADDRESS = "account_loc129y2xw0zp9qafpas7lr2as4kt9yv0vy62yt5wfd6fw4ky4td7cl8ah"; /** * Burn address for Radix local network */ export declare const TEST_RADIX_BURN_ADDRESS = "account_loc1294g56ga4ckdzhksx6vnrns2jj0v47ju87flsyscxdjxu9wrkjp5vt"; /** * Default test chain metadata for Radix local network */ export declare const TEST_RADIX_CHAIN_METADATA: { readonly name: 'radixtest'; readonly protocol: ProtocolType.Radix; readonly chainId: 240; readonly domainId: 1421493353; readonly nativeToken: { readonly decimals: 18; readonly name: 'Radix'; readonly symbol: 'XRD'; readonly denom: 'resource_rdx1tknxxxxxxxxxradxrdxxxxxxxxx009923554798xxxxxxxxxradxrd'; }; readonly blocks: { readonly confirmations: 0; readonly estimateBlockTime: 5; }; readonly gatewayUrls: [{ readonly http: 'http://127.0.0.1:5308'; }]; readonly rpcUrls: [{ readonly http: 'http://127.0.0.1:3333/core'; }]; readonly rpcPort: 3333; readonly rpcUrl: 'http://127.0.0.1:3333'; readonly restPort: 3333; }; //# sourceMappingURL=constants.d.ts.map