Skip to content
Merged
Changes from all commits
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
6 changes: 2 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,15 +712,13 @@ class XrpTestnet extends Testnet implements AccountNetwork {
class Xtz extends Mainnet implements AccountNetwork {
name = 'Xtz';
family = CoinFamily.XTZ;
explorerUrl = 'https://tezblock.io/transaction/';
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm not sure what to use for the account explorer url, based on what I see I think its just the base url with an account id appended

accountExplorerUrl = 'https://tezblock.io/account/';
explorerUrl = 'https://tzstats.com/';
}

class XtzTestnet extends Testnet implements AccountNetwork {
name = 'XtzTestnet';
family = CoinFamily.XTZ;
explorerUrl = 'https://carthagenet.tezblock.io/transaction/';
accountExplorerUrl = 'https://carthagenet.tezblock.io/account/';
explorerUrl = 'https://mumbai.tzstats.com/';
Copy link
Contributor Author

Choose a reason for hiding this comment

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

https://tezos.gitlab.io/introduction/test_networks.html

carthagenet stopped being maintained, I think mumbainet is the current testnet we should use based on the above link

}

class ZCash extends Mainnet implements UtxoNetwork {
Expand Down