-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwallets.example.toml
More file actions
23 lines (20 loc) · 844 Bytes
/
wallets.example.toml
File metadata and controls
23 lines (20 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Wallet Configuration
#
# WARNING: Never commit real private keys to version control!
# This file contains example dummy keys for demonstration only.
[[wallets]]
name = "wallet_1"
# Dummy key - replace with your actual base58-encoded private key
private_key = "5YourBase58EncodedPrivateKeyHere12345678901234567890123456789012345678901234567890"
weight = 1.0
[[wallets]]
name = "wallet_2"
# Dummy key - replace with your actual base58-encoded private key
private_key = "5AnotherBase58EncodedPrivateKeyHere12345678901234567890123456789012345678901234567890"
weight = 1.0
[[wallets]]
name = "wallet_3_high_weight"
# Dummy key - replace with your actual base58-encoded private key
private_key = "5YetAnotherBase58EncodedPrivateKeyHere12345678901234567890123456789012345678901234567890"
# Higher weight = more likely to be selected
weight = 2.0