@firefly-exchange/firefly-client
Version:
The Firefly Client Library allows traders to sign, create, retrieve and listen to orders on Firefly Exchange.
39 lines • 1.85 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EXTRA_FEES = exports.ARBITRUM_NETWROK = exports.DEFAULT_PRECISION = exports.Networks = void 0;
exports.Networks = {
TESTNET_ARBITRUM: {
url: "https://arbitrum-goerli.infura.io/v3/62bcda18381b45eab5435e1342da21a6",
chainId: 421613,
apiGateway: "https://dapi.api.arbitrum-staging.firefly.exchange",
dmsURL: "https://api.arbitrum-staging.firefly.exchange/dead-man-switch",
socketURL: "wss://dapi.api.arbitrum-staging.firefly.exchange",
webSocketURL: "wss://notifications.api.arbitrum-staging.firefly.exchange/",
onboardingUrl: "https://testnet.firefly.exchange",
UUID: ""
},
PRODUCTION_ARBITRUM: {
url: "https://arb1.arbitrum.io/rpc/",
chainId: 42161,
apiGateway: "https://dapi.api.arbitrum-prod.firefly.exchange",
socketURL: "wss://dapi.api.arbitrum-prod.firefly.exchange",
dmsURL: "https://api.arbitrum-prod.firefly.exchange/dead-man-switch",
webSocketURL: "wss://notifications.api.arbitrum-prod.firefly.exchange/",
onboardingUrl: "https://trade-arb.firefly.exchange",
UUID: ""
},
PRODUCTION_ARBITRUM_INTERNAL: {
url: "https://arb1.arbitrum.io/rpc/",
chainId: 42161,
apiGateway: "https://dapi.api.arbitrum-prod.int.firefly.exchange",
socketURL: "wss://dapi.api.arbitrum-prod.int.firefly.exchange",
dmsURL: "https://api.arbitrum-prod.int.firefly.exchange/dead-man-switch",
webSocketURL: "wss://notifications.api.arbitrum-prod.int.firefly.exchange/",
onboardingUrl: "https://trade-arb.firefly.exchange",
UUID: ""
}
};
exports.DEFAULT_PRECISION = 2;
exports.ARBITRUM_NETWROK = "arbitrum";
exports.EXTRA_FEES = 10000;
//# sourceMappingURL=constants.js.map
;