Wallet Configuration#
Secret Storage#
Secret Directory#
secretDir = ${ergo.directory}"/wallet/keystore"
${ergo.directory}
.
Encryption#
The encryption section contains configurations related to how the wallet's secret information is encrypted.
Pseudo-random function#
prf = "HmacSHA256"
prf
configures the pseudo-random function used in the encryption. In this case, it is set to "HmacSHA256".
Number of PBKDF2 Iterations#
c = 128000
c
configures the number of iterations used in the PBKDF2 (Password-Based Key Derivation Function 2) encryption algorithm.
Desired Bit-length of the Derived Key#
dkLen = 256
dkLen
sets the desired length of the derived encryption key, in bits.
Seed Strength Bits#
seedStrengthBits = 160
Mnemonic Phrase Language#
mnemonicPhraseLanguage = "english"
Keep Spent Boxes#
keepSpentBoxes = false
Default Transaction Fee#
defaultTransactionFee = 1000000
Use Pre-EIP3 Derivation#
usePreEip3Derivation = false
Dust Limit#
dustLimit = null
dustLimit
sets the minimum amount of tokens that can be included in a transaction output. If it's set to null (default), there is no minimum limit.
For example, with dustLimit = 1000000
, the node wallet will ignore boxes to self that contain less than .001 ERG.
Maximum and Optimal Inputs#
maxInputs = 100
optimalInputs = 3
maxInputs
setting determines the maximum number of inputs a transaction can have. The optimalInputs
setting specifies the preferred number of inputs for a transaction.
Test Mnemonic and Keys Quantity#
# testMnemonic = "ozone drill grab fiber curtain grace pudding thank cruise elder eight picnic"
# testKeysQty = 5
testMnemonic
is set, the wallet will operate in test mode, using this mnemonic seed. The testKeysQty
determines the number of keys to generate for the test.
Tokens Whitelist#
tokensWhitelist = null
Check EIP27#
checkEIP27 = false
Profile#
profile = "user"