mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-08-06 13:34:21 -04:00
support LTC and ZEC
This commit is contained in:
parent
3708880ddd
commit
5e6f59d69c
1 changed files with 7 additions and 1 deletions
|
@ -85,13 +85,19 @@ const TestConfig = {
|
||||||
walletSyncPeriodMs: 5000, // TODO (woodser): auto adjust higher if using remote connection
|
walletSyncPeriodMs: 5000, // TODO (woodser): auto adjust higher if using remote connection
|
||||||
daemonPollPeriodMs: 15000,
|
daemonPollPeriodMs: 15000,
|
||||||
maxTimePeerNoticeMs: 3000,
|
maxTimePeerNoticeMs: 3000,
|
||||||
assetCodes: ["USD", "GBP", "EUR", "BTC", "ETH"], // primary asset codes
|
assetCodes: ["USD", "GBP", "EUR", "ETH", "BTC", "LTC", "ZEC"], // primary asset codes
|
||||||
cryptoAddresses: [{
|
cryptoAddresses: [{
|
||||||
currencyCode: "ETH",
|
currencyCode: "ETH",
|
||||||
address: "0xdBdAb835Acd6fC84cF5F9aDD3c0B5a1E25fbd99f"
|
address: "0xdBdAb835Acd6fC84cF5F9aDD3c0B5a1E25fbd99f"
|
||||||
}, {
|
}, {
|
||||||
currencyCode: "BTC",
|
currencyCode: "BTC",
|
||||||
address: "bcrt1q6j90vywv8x7eyevcnn2tn2wrlg3vsjlsvt46qz"
|
address: "bcrt1q6j90vywv8x7eyevcnn2tn2wrlg3vsjlsvt46qz"
|
||||||
|
}, {
|
||||||
|
currencyCode: "LTC",
|
||||||
|
address: "LXUTUN5mTPc2LsS7cEjkyjTRcfYyJGoUuQ"
|
||||||
|
}, {
|
||||||
|
currencyCode: "ZEC",
|
||||||
|
address: "t1SnUTh75DSZ1AvbjiTvvHkmPoph7DeHTGG" // TODO: support z-addresses only
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
proxyPorts: new Map<string, string[]>([ // map proxied ports to havenod api and p2p ports
|
proxyPorts: new Map<string, string[]>([ // map proxied ports to havenod api and p2p ports
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue