-
Notifications
You must be signed in to change notification settings - Fork 505
Expand file tree
/
Copy pathconfig.json.example
More file actions
31 lines (30 loc) · 1.23 KB
/
config.json.example
File metadata and controls
31 lines (30 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"comments": "
Make a copy of this file and save to `config.json`
Fill in your secret key e.g. 0x0000000000000000000000000000000000000000000000000000000000000000
If you are using an Agent/API Wallet you MUST also specify the public address of your account, not the
address of the Agent/API Wallet.
Otherwise, feel free to leave it blank and it will be automatically derived from the secret key. Alternatively,
you can specify a local `keystore_path` which will prompt you for the keystore password interactively.
Note: If both `secret_key` and `keystore_path` are provided, the `secret_key` will take precedence.
You can also populate the "multi_sig" section with the secret keys of the authorized user wallets that you
wish to sign multi-sig actions for.
",
"keystore_path": "",
"secret_key": "",
"account_address": "",
"multi_sig": {
"authorized_users": [
{
"comment": "signer 1",
"secret_key": "",
"account_address": ""
},
{
"comment": "signer 2",
"secret_key": "",
"account_address": ""
}
]
}
}