Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 87 additions & 19 deletions coins
Original file line number Diff line number Diff line change
Expand Up @@ -13444,6 +13444,74 @@
"erc20_sender_refund": 85000
}
},
{
"coin": "TRX",
"name": "tron",
"fname": "TRON",
"mm2": 1,
"wallet_only": true,
"decimals": 6,
"avg_blocktime": 3,
"required_confirmations": 1,
"derivation_path": "m/44'/195'",
"protocol": {
"type": "TRX",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on the other EVM chains, the main coin is configured like this

    "coin": "MATIC",
    "fname": "Polygon",
    "protocol": {
      "type": "ETH",
      "protocol_data": {
        "chain_id": 137
      }

with type ETH and chain_id
has this changed for TRX?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, no chain_id for tron

"protocol_data": {
"network": "Mainnet"
}
}
},
{
"coin": "USDT-TRC20",
"name": "usdt_trc20",
"fname": "Tether",
"mm2": 1,
"wallet_only": true,
"decimals": 6,
"derivation_path": "m/44'/195'",
"protocol": {
"type": "TRC20",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

type of tokens is ERC20, no matter which specific chain it's on
like in

    "coin": "MASK-PLG20",
    "chain_id": 137,
    "protocol": {
      "type": "ERC20",
      "protocol_data": {
        "platform": "MATIC",
        "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7"

Copy link
Author

@shamardy shamardy Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TRC20 is a new coin type for tron

"protocol_data": {
"platform": "TRX",
"contract_address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}
}
},
{
"coin": "TRXT",
"name": "tron_test",
"fname": "TRON Testnet",
"is_testnet": true,
"mm2": 1,
"wallet_only": true,
"decimals": 6,
"avg_blocktime": 3,
"required_confirmations": 1,
"derivation_path": "m/44'/195'",
"protocol": {
"type": "TRX",
"protocol_data": {
"network": "Nile"
}
}
},
{
"coin": "USDT-TRC20-TEST",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- should only be used once in a ticker, like in USDC-AVX20_OLD
for testchains it's better to use a completely different ticker, like TESTUSDT-TRC20
if the ticker starts with USDT-, GUI will use the price of USDT for this

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, renamed to TESTUSDT-TRC20 and updated the name field to match.

"name": "usdt_trc20_test",
"fname": "Tether Testnet",
"is_testnet": true,
"mm2": 1,
"wallet_only": true,
"decimals": 6,
"derivation_path": "m/44'/195'",
"protocol": {
"type": "TRC20",
"protocol_data": {
"platform": "TRXT",
"contract_address": "TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf"
}
}
},
{
"coin": "TRYB-AVX20",
"name": "tryb_avx20",
Expand Down Expand Up @@ -17394,29 +17462,29 @@
}
},
{
"coin": "VRM",
"name": "veriumreserve",
"fname": "Verium Reserve",
"rpcport": 33987,
"pubtype": 70,
"p2shtype": 132,
"wiftype": 198,
"txfee": 1000000,
"coin": "VRM",
"name": "veriumreserve",
"fname": "Verium Reserve",
"rpcport": 33987,
"pubtype": 70,
"p2shtype": 132,
"wiftype": 198,
"txfee": 1000000,
"isPoS": 1,
"segwit": false,
"force_min_relay_fee": true,
"mm2": 1,
"confpath": "USERHOME/.verium/verium.conf",
"required_confirmations": 5,
"avg_blocktime": 240,
"protocol": {
"type": "UTXO"
},
"derivation_path": "m/44'/8750'",
"segwit": false,
"force_min_relay_fee": true,
"mm2": 1,
"confpath": "USERHOME/.verium/verium.conf",
"required_confirmations": 5,
"avg_blocktime": 240,
"protocol": {
"type": "UTXO"
},
"derivation_path": "m/44'/8750'",
"links": {
"github": "https://github.com/VeriConomy/verium-current",
"homepage": "https://vericonomy.com"
}
}
},
{
"coin": "CAS",
Expand Down
7 changes: 7 additions & 0 deletions ethereum/TRX
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"rpc_nodes": [
{
"url": "https://api.trongrid.io"
}
]
}
10 changes: 10 additions & 0 deletions ethereum/TRXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"rpc_nodes": [
{
"url": "https://api.nileex.io"
},
{
"url": "https://nile.trongrid.io"
}
]
}