export declare const REST_API_KEY_HEADER = "kuma-api-key"; export declare const REST_HMAC_SIGNATURE_HEADER = "kuma-hmac-signature"; export declare const EIP_712_DOMAIN_NAME = "Kuma"; export declare const EIP_712_DOMAIN_VERSION = "1.0.0"; export declare const EIP_712_DOMAIN_VERSION_SANDBOX = "1.0.0-sandbox"; export declare const WALLET_SIGNATURE_MESSAGE = "Sign this free message to prove you control this wallet"; /** * The URI that will be used based on the configuration given. This includes * sandbox vs production as well as the multi-verse chain that should be used * (eth default for all clients). * * @see docs [Websocket API Interaction Docs](https://api-docs-v1.kuma.bid/#websocket-api-interaction) * @see docs [REST API Interaction Docs](https://api-docs-v1.kuma.bid/#rest-api-interaction) * @see docs [Sandbox API Docs](https://api-docs-v1.kuma.bid/#sandbox) * * @internal */ export declare const URLS: Readonly<{ readonly sandbox: { readonly v1: { readonly rest: "https://api-sandbox.kuma.bid/v1"; readonly websocket: "wss://websocket-sandbox.kuma.bid/v1"; }; }; readonly production: { readonly v1: { readonly rest: "https://api.kuma.bid/v1"; readonly websocket: "wss://websocket.kuma.bid/v1"; }; }; }>; //# sourceMappingURL=constants.d.ts.map