19 lines
561 B
JavaScript
19 lines
561 B
JavaScript
const floGlobals = {
|
|
|
|
//Required for all
|
|
blockchain: "FLO",
|
|
|
|
//Required for blockchain API operators
|
|
apiURL: {
|
|
FLO: ['https://livenet.flocha.in/', 'https://flosight.duckdns.org/'],
|
|
FLO_TEST: ['https://testnet-flosight.duckdns.org', 'https://testnet.flocha.in/']
|
|
},
|
|
application: "exchange",
|
|
adminID: "FMxYC7gYZhouzqtHZukGnPiQ8nvG4CMzXM",
|
|
sendAmt: 0.001,
|
|
fee: 0.0005,
|
|
tokenURL: "https://ranchimallflo.duckdns.org/",
|
|
currency: "rupee"
|
|
};
|
|
|
|
('object' === typeof module) ? module.exports = floGlobals: null; |