diamante-base
Version:
Low-level support library for the Diamante network.
22 lines (21 loc) • 793 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Networks = void 0;
/**
* Contains passphrases for common networks:
* * `Networks.PUBLIC`: `Public Global Diamante Network ; September 2015`
* * `Networks.TESTNET`: `Test SDF Network ; September 2015`
* * `Networks.FUTURENET`: `Test SDF Future Network ; October 2022`
* * `Networks.STANDALONE`: `Standalone Network ; February 2017`
*
* @type {{PUBLIC: string, TESTNET: string, FUTURENET: string, STANDALONE: string }}
*/
var Networks = exports.Networks = {
PUBLIC: 'Diamante MainNet; SEP 2022',
TESTNET: 'Diamante Testnet',
FUTURENET: 'Test SDF Future Network ; October 2022',
SANDBOX: 'Local Sandbox Diamante Network ; September 2022',
STANDALONE: 'Standalone Network ; February 2017'
};
;