forked from bitpay/nodejs-bitpay-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnv.ts
More file actions
19 lines (18 loc) · 588 Bytes
/
Env.ts
File metadata and controls
19 lines (18 loc) · 588 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const Test = 'TEST';
export const Prod = 'PROD';
export const TestUrl = 'https://test.bitpay.com/';
export const ProdUrl = 'https://bitpay.com/';
export const BitpayApiVersion = '2.0.0';
export const BitpayPluginInfo = 'BitPay_NodeJs_Client_v6.3.1';
export const BitpayApiFrame = 'std';
export const BitpayApiFrameVersion = '1.0.0';
module.exports = {
Test: Test,
Prod: Prod,
TestUrl: TestUrl,
ProdUrl: ProdUrl,
BitpayApiVersion: BitpayApiVersion,
BitpayPluginInfo: BitpayPluginInfo,
BitpayApiFrame: BitpayApiFrame,
BitpayApiFrameVersion: BitpayApiFrameVersion
};