Skip to content

Commit

Permalink
Merge pull request #4982 from BitGo/add-tron-explorer-url
Browse files Browse the repository at this point in the history
chore(statics): add Tron account explorer url
  • Loading branch information
Vijay-Jagannathan authored Oct 3, 2024
2 parents ecef044 + 2dcc0ad commit 8cc0427
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,7 @@ class Fiat extends Mainnet implements BaseNetwork {
class Trx extends Mainnet implements TronNetwork {
name = 'Trx';
family = CoinFamily.TRX;
accountExplorerUrl = 'https://tronscan.org/#/address/';
explorerUrl = 'https://tronscan.org/#/transaction/';
maxFeeLimit = '5000000000';
contractCallFeeLimit = '100000000';
Expand All @@ -876,6 +877,7 @@ class Trx extends Mainnet implements TronNetwork {
class TrxTestnet extends Testnet implements TronNetwork {
name = 'TrxTestnet';
family = CoinFamily.TRX;
accountExplorerUrl = 'https://shasta.tronscan.org/#/address/';
explorerUrl = 'https://shasta.tronscan.org/#/transaction/';
maxFeeLimit = '5000000000';
contractCallFeeLimit = '100000000';
Expand Down

0 comments on commit 8cc0427

Please sign in to comment.