Skip to content

Instantly share code, notes, and snippets.

@kristjank
Last active September 25, 2018 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristjank/2235e565789698495f75f6a1ead047a6 to your computer and use it in GitHub Desktop.
Save kristjank/2235e565789698495f75f6a1ead047a6 to your computer and use it in GitHub Desktop.
Dynamic fee settings in network.json
// Found in networks config folder in crypto/lib/networks
"dynamicOffsets": {
"transfer": 100,
"secondSignature": 250,
"delegateRegistration": 500,
"vote": 100,
"multiSignature": 500,
"ipfs": 250,
"timelockTransfer": 500,
"multiPayment": 500,
"delegateResignation": 500
}
// Fees can be enabled and disabled based on setting below. Meaning that from block 10 onwards
// the dynamic fees will be active.
{
"height": 10,
"fees":{
"dynamic" : true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment