96 lines
4.9 KiB
Plaintext
96 lines
4.9 KiB
Plaintext
<% if @config['parity']['enabled'] %>
|
|
- key: eth-<%= @config['parity']['network'] %>
|
|
name: Ethereum <%= @config['parity']['network'].capitalize %>
|
|
client: parity
|
|
server: http://<%= @config['parity']['address'] %>:<%= @config['parity']['rpcport'] %>
|
|
height: 8670000
|
|
min_confirmations: 6
|
|
explorer:
|
|
address: https://etherscan.io/address/#{address}
|
|
transaction: https://etherscan.io/tx/#{txid}
|
|
status: active
|
|
<% end %>
|
|
|
|
<% if @config['bitcoind']['enabled'] %>
|
|
- key: btc-<%= @config['bitcoind']['network'] %>
|
|
name: Bitcoin <%= @config['bitcoind']['network'].capitalize %>
|
|
client: bitcoin
|
|
server: http://<%= @config['bitcoind']['rpcuser'] %>:<%= @config['bitcoind']['rpcpassword'] %>@<%= @config['bitcoind']['address'] %>:<%= @config['bitcoind']['rpcport'] %>
|
|
height: 597000
|
|
min_confirmations: 6
|
|
explorer:
|
|
address: https://blockchain.com/address/#{address}
|
|
transaction: https://blockchain.com/tx/#{txid}
|
|
status: active
|
|
<% end %>
|
|
|
|
<% if @config['BetaCandaTestNetwork'] %>
|
|
|
|
- key: eth-rinkeby
|
|
name: Ethereum Rinkeby
|
|
client: geth # API client name.
|
|
server: http://127.0.0.1:8545 # Public Ethereum node endpoint. IMPORTANT: full syncmode.
|
|
height: 4000000 # Initial block number from which sync will be started.
|
|
min_confirmations: 6 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://rinkeby.etherscan.io/address/#{address}
|
|
transaction: https://rinkeby.etherscan.io/tx/#{txid}
|
|
status: active
|
|
|
|
- key: btc-testnet
|
|
name: Bitcoin Testnet
|
|
client: bitcoin # API client name.
|
|
server: http://user:password@127.0.0.1:18332 # Public Bitcoin node endpoint.
|
|
height: 1500000 # Initial block number from which sync will be started.
|
|
min_confirmations: 2 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://testnet.blockchain.com/address/#{address}
|
|
transaction: https://testnet.blockchain.com/tx/#{txid}
|
|
status: active
|
|
|
|
- key: bsc-testnet
|
|
name: BSC Testnet
|
|
client: bitcoin # API client name.
|
|
server: http://user:password@127.0.0.1:18332 # Public Bitcoin node endpoint.
|
|
height: 4000000 # Initial block number from which sync will be started.
|
|
min_confirmations: 15 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://testnet.bscscan.com/address/#{address}
|
|
transaction: https://testnet.bscscan.com/tx/#{txid}
|
|
status: active
|
|
|
|
- key: trx-testnet
|
|
name: Tron Testnet
|
|
client: bitcoin # API client name.
|
|
server: http://user:password@127.0.0.1:18332 # Public Bitcoin node endpoint.
|
|
height: 4000000 # Initial block number from which sync will be started.
|
|
min_confirmations: 15 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://tronscan.org/#/address/#{address}
|
|
transaction: https://tronscan.org/#/tx/#{txid}
|
|
status: active
|
|
|
|
- key: xlm-testnet
|
|
name: XLM Testnet
|
|
client: bitcoin # API client name.
|
|
server: http://user:password@127.0.0.1:18332 # Public Bitcoin node endpoint.
|
|
height: 4000000 # Initial block number from which sync will be started.
|
|
min_confirmations: 1 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://stellarscan.io/address/#{address}
|
|
transaction: https://stellarscan.io/tx/#{txid}
|
|
status: active
|
|
|
|
- key: xrp-testnet
|
|
name: XRP Testnet
|
|
client: bitcoin # API client name.
|
|
server: http://user:password@127.0.0.1:18332 # Public Bitcoin node endpoint.
|
|
height: 4000000 # Initial block number from which sync will be started.
|
|
min_confirmations: 1 # Minimal confirmations needed for withdraw and deposit confirmation.
|
|
explorer:
|
|
address: https://xrpscan.com/account/#{address}
|
|
transaction: https://xrpscan.com/tx/#{txid}
|
|
status: active
|
|
|
|
|
|
<% end %> |