multiversx_sdk_http/
lib.rs1mod gateway_http_proxy;
2
3pub use gateway_http_proxy::GatewayHttpProxy;
4
5pub use multiversx_sdk as core;
6
7pub const MAINNET_GATEWAY: &str = "https://gateway.multiversx.com";
8pub const TESTNET_GATEWAY: &str = "https://testnet-gateway.multiversx.com";
9pub const DEVNET_GATEWAY: &str = "https://devnet-gateway.multiversx.com";
10pub const CHAIN_SIMULATOR_GATEWAY: &str = "http://localhost:8085";
11
12pub const METACHAIN_SHARD_ID: u32 = 0xFFFFFFFF;
14
15pub const DEFAULT_USE_CHAIN_SIMULATOR: bool = false;