NOTE
The filename in each subdirectory needs to match the coin's symbol exactly, it is the unique field by which different coins are indexed. Please use .png files for icons
This repository is the coins database which is accessed by AtomicDEX API and graphical applications like AtomicDEX Mobile, AtomicDEX-PRO, HyperDEX etc. to enable coins for trading.
estimatefee
getblock
getblockhash
getinfo
getrawtransaction
gettxout
importaddress
listunspent
listreceivedbyaddress
listtransactions
sendrawtransaction
- The token contract must have
approve
andtransferFrom
methods. Additionally, thetransfer
andtransferFrom
methods must return a boolean value (true/false
) indicating whether a transfer was successful. This requirement is actually a part of the ERC20 standard, but many tokens seem to not follow it.
When submitting a pull request to add a coin to AtomicDEX-API, make sure you have completed this checklist:
0. The coin must have participated in a successful Atomic Swap using AtomicDEX-API
When submitting your coin addition request, please submit the URLs of the 5 transactions (takerfee sent
, maker payment
, taker payment
and taker payment spent
, maker payment spent
) produced by successful swap in a new file inside the swaps directory, example. This means that, before going through the further steps and submitting the information to this coins database repo, you would have performed a successful atomic swap. The further steps explain the expected files/values to be submitted.
You can learn about performing an atomic swap from our documentation at this link
If you have any questions, please ask in the #support
channel in our Discord server or you can get help from the team at coinintegration@komodoplatform.com or one of the service providers listed at https://komodoplatform.com/ecosystem/#service-providers.
You need the following info in JSON format added to the coins file:
{
"coin": "LTC",
"name": "litecoin",
"fname": "Litecoin",
"rpcport": 9332,
"pubtype": 48,
"p2shtype": 50,
"wiftype": 176,
"txfee": 10000,
"segwit": true,
"mm2": 1,
"required_confirmations": 2,
"protocol": {
"type": "UTXO"
}
}
{
"coin": "RFOX",
"asset": "RFOX",
"fname": "RedFOX",
"rpcport": 32269,
"txversion": 4,
"overwintered": 1,
"mm2": 1,
"required_confirmations": 2,
"requires_notarization": true,
"protocol": {
"type": "UTXO"
}
}
{
"coin": "ECA",
"name": "electra",
"fname": "Electra",
"rpcport": 5788,
"pubtype": 33,
"p2shtype": 40,
"wiftype": 161,
"txfee": 10000,
"txversion": 7,
"mm2":1,
"confpath": "USERHOME/.electra/Electra.conf",
"required_confirmations": 10,
"protocol": {
"type": "UTXO"
}
}
{
"coin": "BAT",
"name": "basic-attention-token",
"fname": "Basic Attention Token",
"rpcport": 80,
"mm2": 1,
"required_confirmations": 3,
"protocol": {
"type": "ERC20",
"protocol_data": {
"platform": "ETH",
"contract_address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF"
}
}
}
{
"coin": "QRC20",
"pubtype": 120,
"p2shtype": 50,
"wiftype": 128,
"segwit": true,
"mm2": 1,
"mature_confirmations": 500,
"protocol": {
"type": "QRC20",
"protocol_data": {
"platform": "QTUM",
"contract_address": "0xd362e096e873eb7907e205fadc6175c6fec7bc44"
}
}
}
"mm2"
all the coins that were successfully atomic swapped through the AtomicDEX-API have this key set to1
(you have to set this parameter to1
in your local coins file when testing)"required_confirmations"
the number of confirmations AtomicDEX will wait for during the swap. Default value is 1. WARNING, this setting affects the security of the atomic swap. 51% attacks (double spending) are a threat and have been succesfully conducted in the past. Read more about it here. You can find a collection of coins and the theoretical cost of a 51% attack here. Please be aware that some of the coins supported by AtomicDEX are vulnerable to such attacks, so consider using higher values for them, especially when dealing with high amounts."requires_notarization"
tells AtomicDEX to wait for a notarization during the swap. This only works with dPoW coins and"required_confirmations"
must be set to2
or higher."decimals"
defines the number of digits after the decimal point that should be used to display the orderbook amounts, balance, and the value of inputs to be used in the case of order creation or awithdraw
transaction. The default value used for a UTXO type coin (Bitcoin Protocol) is8
and the default value used for a ERC20 Token is18
. It is very important for this value to be set correctly. For example, if this value was set as9
for BTC, a command to withdraw1 BTC
tries to withdraw10^9
satoshis of Bitcoin, i.e.,10 BTC
"protocol"
contains the coin protocol"type"
(UTXO, ETH, etc.) and specific protocol configuration -"protocol_data"
object that can have arbitrary format.
"coin"
must be coin ticker."name"
must be coin's name, in all small letters. This is the value which is expected to be default data directory name for that coin. Example if coin's name islitecoin
then it's expected data directory on Linux is~/.litecoin/
, on Mac~/Library/Applications Support/Litecoin/
, on Windows%AppData%\Litecoin
. Please keep this key's value in small letters only."confpath"
must be ONLY used in case the expected data directory name of the coin/project is different to the"name"
's value, as explained in last point. Please refer to Example 3 for better understanding. Make sure to use the exact format forconfpath
. You don't need to change the wordUSERHOME
, it remains as is. Make sure you have/.
afterUSERHOME
. And then the expected coin/project's data directory path and it's expected.conf
file name."fname"
must be coin's full name."rpcport"
must be coin's default RPC port. It is expected that it doesn't conflict with any existing coin in the coins db."pubtype"
,"p2shtype"
, and"wiftype"
is the also very specific information about coin's parameters. This is specific to Bitcoin Protocol compatible coins only, and such information can be found in source code of the project. These parameters information can be expected in files likesrc/init.cpp
,src/base58.h
, andsrc/chainparamsbase.h
if the project is following the bitcoin source code directory/files structure. If the parameters info is unclear then please have these confirmed by that coin/project's developers and make sure it's correct information."txfee"
is a value of default transactions fee, which must be specified in satoshies unit. AtomicDEX uses this as the default transaction fee value when making atomic swaps transactions. If set to0
, AtomicDEX will use a dynamic fee based on output fromestimatesmartfee
."overwintered"
must be1
if Overwinter upgrade was activated for the coin."taddr"
is only relevant for coins that forked the Zcash protocol and have both transparent addresses and z-addresses. The value to be set for this key can be found from the filesrc/chainparams.cpp
of the coin's source code and it is the first value present in bothbase58Prefixes[PUBKEY_ADDRESS]
andbase58Prefixes[SCRIPT_ADDRESS]
. But it has to be converted to decimal from HEX. So ifbase58Prefixes[PUBKEY_ADDRESS]
={0x1C,0xB8}
, thetaddr
is0x1C
coverted to decimal. As 0x1C in HEX = 28 in decimal, the entry in the json will be"taddr" : 28
force_min_relay_fee
- if this key is set to true for coins with dynamic fees, when a new transaction is generated, AtomicDEX-API will check whether the total fee set (sat * tx size
) is lower than relay fee and will use the relay fee instead.mtp_block_count
- number of blocks to be used for the calculation ofmedian time past
. Must be greater than0
. Default value is11
. While this parameter is applicable only in the case of KMD reward calculation for now, it will be used for calculating locktimes to be set for the atomic swap refund transactions. Can be ignored for most coins for now.estimate_fee_mode
- sets the fee mode for theestimatesmartfee
call. Supported values are:ECONOMICAL
,CONSERVATIVE
,UNSET
. Please note that some coins may not support some of these modes. Makes no effect for coins that do not have theestimatesmartfee
RPC.address_format
- defines whether to use the standard bitcoin address format or the cash address format for BCH. More formats may be added in the future. Possible values as of now:"address_format":{"format":"standard"}
to set the standard BTC/UTXO address format."address_format":{"format":"cashaddress","network":"NETWORK_ID"}
to use BCH specific address format.NETWORK_ID
can be:bitcoincash
for BCH mainnet,bchtest
for BCH testnet andbchreg
for BCH regtest.isPoS
- whether the coin uses proof of stake. This key decides whether the transactions created have thenTime
field. Can be0
or1
.segwit
- is a boolean value, if set to true, AtomicDEX-API will allow withdrawal toP2SH
addresses. Will possibly mean full segwit support in the future.version_group_id
- sets theversion_group_id
used by Zcash (and its forks') transactions. Determined automatically by tx version andoverwintered
if not set.consensus_branch_id
- sets theconsensus_branch_id
used in Zcash (and its forks') transactions' signature hash calculation. Determined automatically by tx version andoverwintered
if not set.mature_confirmations
- number of blockchain confirmations required for coinbase output to be considered mature (spendable).
- Ethereum protocol specific coin/project add request are the simplest.
"coin"
,"name"
, and"fname"
information is same as explained in bitcoin protocol specific json section. - Protocol
"type"
field:"ETH"
or"ERC20"
- Protocol
"protocol_data"
field (ERC20 only):"platform"
-"ETH"
,"ETC"
or other Ethereum forks."contract_address"
- ERC20 token checksummed smart contract address.
- Supports all fields of UTXO specific config.
- Protocol
"type"
field:"QRC20"
. - Protocol
"protocol_data"
field:"platform"
-"QTUM"
or QTUM forks."contract_address"
- QRC20 token smart contract address.
- The icon file is required.
- Icon must be a .png format file.
- Dimentions of icon file is 82x82 pixels.
- Icon file name MUST be in small letters.
- Icon file location is icons directory.
- Explorer file name must be coin's ticker name matching the
"coin"
value as specified in coins file. - Explorer file name must not have any file extension. It is a file without any
.
extension. - Explorer file name must be in all capital letters.
- It must have a valid JSON array with at least one Explorer URL in it. It's better if there are more than one explorer URLs in this JSON array. Example:
["http://example1.com/tx/","http://example2.com/tx/"]
. - The URL of Explorer must be pointing to the transactions URL. Check BTC file for an example: explorers/BTC, which has
["https://www.blocktrail.com/BTC/tx/"]
. This explorers URL is used to link to the transactions like this example link in GUIs. Make sure this URL ends with/
.
- Electrum file name must be coin's ticker name matching the
"coin"
value as specified in coins file. - Electrum file name must not have any file extension. It is a file without any
.
extension. - Electrum file name must be all in capital letters.
- It must be a valid JSON format as shown in the following example:
[
{
"url": "nmc.bitcoins.sk:50002",
"protocol": "SSL",
"disable_cert_verification": true,
"contact": [
{"email": "electrum1_admin_email@example.com"},
{"matrix": "@electrum1_admin:matrix.org"},
{"skype": "example_username"},
{"twitter": "example_username"},
{"reddit": "example_username"},
{"github": "example_username"},
{"keybaseio": "example_username"}
]
},
{
"url": "electrum-nmc.le-space.de:50002",
"protocol": "SSL",
"disable_cert_verification": false,
"contact": [
{"email": "electrum2_admin_email@example.com"}
]
}
]
- Details of at least 2 Electrum servers must be provided.
- Protocol can be "SSL" or "TCP".
- Contact information must be provided in case the server admin needs to be contacted in emergency situations. It can be any contact information out of the examples provided. Or may be add your own service/contact information as it suites you.
- The address and port of electrum server are required. The address of electrum server can either be a DNS or an IP address.
- File name must be coin's ticker name matching the
"coin"
value as specified in coins file. - File name must not have any file extension. It is a file without any
.
extension. - File name must be all in capital letters.
- It must be a valid JSON format as shown in the following example:
{
"swap_contract_address":"0x8500AFc0bc5214728082163326C2FF0C73f4a871",
"rpc_nodes": [
{
"url":"http://ethnode.com:8545",
"contact": [
{"email": "ethnode_admin_email@example.com"},
{"matrix": "@ethnode_admin:matrix.org"},
{"skype": "example_username"},
{"twitter": "example_username"},
{"reddit": "example_username"},
{"github": "example_username"},
{"keybaseio": "example_username"}
]
},
{
"url":"http://ethnode2.com:8545",
"contact": [
{"email": "ethnode2_admin_email@example.com"}
]
}
]
}
- Swap contract address must be the address of etomic swap smart contract deployed to ETH network, example.
- At least minimum 2 or more URLs of RPC nodes must be provided.
- Contact information must be provided in case the server admin needs to be contacted in urgent cases. It can be any contact information out of the examples provided. Or may be add your own service/contact information as suites you.
- The RPC node URL can either be a DNS or an IP address with port.
Komodo electrumX monitoring portal.
- Projects repo
- This file is monitored by parser in order to automatically rebuild/deploy the portal on any changes to the current integration of coins to the DEX ecosystem.
- It contains json data for parser with up-to-date adex-mob and adex-pro coins integrations as well as all-tickers with available electrum servers that are not yet in our DEX products.
- The maintainer of this file is dathbezumniy.