It checks available balance at specified interval, will add commitment automatically. The following parameters should be added in "{ }".
- Enable: Optional, default = true.
- Exec: Mandatory, must be SIGNA_COMMIT.
- Interval: Optional, checking interval, default = 600 seconds.
- WalletUrl: Optional, online wallet Url, default = https://europe.signum.network .
- FeeType: Optional, default = STANDARD. Transaction fee, choose from CHEAP, STANDARD and PRIORITY.
- MinTx: Optional, default = 100. It commits the entire amount when the wallet available balance reaches this amount.
- SecretPhrase: Mandatory, cipher of wallet's passphrase. It can be generated by embedded cipher-generator of ddProxy.
ACTIONs: [
{ Enable: true,
Exec: SIGNA_COMMIT,
Interval: 600,
WalletUrl: "https://europe.signum.network",
FeeType: STANDARD,
MinTx: 100,
SecretPhrase: "cipher-of-wallet-passphrase"
}
]
Any optional parameters can be ignored to simplified as the following:
ACTIONs: [
{ Exec: AUTO_COMMIT, SecretPhrase: "cipher-of-wallet-passphrase" }
]