var networkTypeConfig = {
  "explorerUrl": "{{{explorerUrl}}}",
  "faucetUrl": "{{{faucetUrl}}}",
  "defaultNetworkType": {{{networkType}}},
  "defaultNodeUrl": "{{{defaultNodeUrl}}}",
  "networkConfigurationDefaults": {
    "maxMosaicDivisibility": {{{maxMosaicDivisibility}}},
    "namespaceGracePeriodDuration": {{{toSeconds namespaceGracePeriodDuration}}},
    "lockedFundsPerAggregate": "{{{lockedFundsPerAggregate}}}",
    "maxCosignatoriesPerAccount": {{{maxCosignatoriesPerAccount}}},
    "blockGenerationTargetTime": {{{toSeconds blockGenerationTargetTime}}},
    "maxNamespaceDepth": {{{maxNamespaceDepth}}},
    "maxMosaicDuration": {{{toSeconds maxMosaicDuration}}},
    "minNamespaceDuration": {{{toSeconds minNamespaceDuration}}},
    "maxNamespaceDuration": {{{toSeconds maxNamespaceDuration}}},
    "maxTransactionsPerAggregate": {{{maxTransactionsPerAggregate}}},
    "maxCosignedAccountsPerAccount": {{{maxCosignedAccountsPerAccount}}},
    "maxMessageSize": {{{maxMessageSize}}},
    "maxMosaicAtomicUnits":  {{{maxMosaicAtomicUnits}}},
    "currencyMosaicId": "{{{toSimpleHex currencyMosaicId}}}",
    "harvestingMosaicId": "{{{toSimpleHex harvestingMosaicId}}}",
    "defaultDynamicFeeMultiplier": {{{defaultDynamicFeeMultiplier}}},
    "epochAdjustment": {{{toSeconds epochAdjustment}}},
    "totalChainImportance": {{totalChainImportance}},
    "generationHash": "{{nemesisGenerationHashSeed}}"
  },
  "nodes": [
{{#restNodes}}
    {"friendlyName": "{{{friendlyName}}}", "roles": {{{roles}}}, "url": "{{{url}}}"},
{{/restNodes}}
  ]
}
var networkConfig = { {{{networkType}}} : networkTypeConfig }
window.networkConfig = networkConfig
console.log('networkConfig loaded!', networkConfig)




