16 lines
498 B
JavaScript
16 lines
498 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/']
|
|
},
|
|
//sendAmt: 0.001,
|
|
//fee: 0.0005,
|
|
};
|
|
|
|
(typeof global !== "undefined" ? global : window).cryptocoin = floGlobals.blockchain;
|
|
('object' === typeof module) ? module.exports = floGlobals : null; |