Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 9493d7b

Browse files
committed
coin config update
1 parent 564127a commit 9493d7b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

schema/configuration.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ type WalletsConfig struct {
3636
LTC *CoinConfig `json:"LTC"`
3737
ZEC *CoinConfig `json:"ZEC"`
3838
ETH *CoinConfig `json:"ETH"`
39+
FIL *CoinConfig `json:"FIL"`
3940
}
4041

4142
type CoinConfig struct {
@@ -130,6 +131,17 @@ func DefaultWalletsConfig() *WalletsConfig {
130131
MaxFee: 200,
131132
WalletOptions: EthereumDefaultOptions(),
132133
},
134+
FIL: &CoinConfig{
135+
Type: WalletTypeAPI,
136+
APIPool: CoinPoolFIL,
137+
APITestnetPool: CoinPoolTFIL,
138+
FeeAPI: "", // intentionally blank
139+
LowFeeDefault: 7,
140+
MediumFeeDefault: 15,
141+
HighFeeDefault: 30,
142+
MaxFee: 200,
143+
WalletOptions: nil,
144+
},
133145
}
134146
}
135147

0 commit comments

Comments
 (0)