Skip to content

Commit

Permalink
Merge pull request #4290 from BitGo/WIN-2093-update-algorand-explorer
Browse files Browse the repository at this point in the history
feat(statics): update algorand explorer link
  • Loading branch information
shivpippal committed Feb 19, 2024
2 parents fe4ea3e + ec41e7b commit 816f0ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10488,7 +10488,7 @@ export const coins = CoinMap.fromCoins([
'USDC',
6,
UnderlyingAsset['algo:USDC-31566704'],
'https://algoexplorer.io/asset/31566704',
'https://explorer.bitquery.io/algorand/token/31566704',
AccountCoin.DEFAULT_FEATURES,
'',
'USDC'
Expand All @@ -10500,7 +10500,7 @@ export const coins = CoinMap.fromCoins([
'Tether USDt',
6,
UnderlyingAsset['algo:USDt-312769'],
'https://algoexplorer.io/asset/312769',
'https://explorer.bitquery.io/algorand/token/312769',
AccountCoin.DEFAULT_FEATURES,
'',
'USDt'
Expand All @@ -10512,7 +10512,7 @@ export const coins = CoinMap.fromCoins([
'MCAU',
5,
UnderlyingAsset['algo:MCAU-6547014'],
'https://algoexplorer.io/asset/6547014',
'https://explorer.bitquery.io/algorand/token/6547014',
AccountCoin.DEFAULT_FEATURES,
'',
'MCAU'
Expand All @@ -10524,7 +10524,7 @@ export const coins = CoinMap.fromCoins([
'VCAD',
2,
UnderlyingAsset['algo:VCAD-438505559'],
'https://algoexplorer.io/asset/438505559',
'https://explorer.bitquery.io/algorand/token/438505559',
AccountCoin.DEFAULT_FEATURES,
'',
'VCAD'
Expand All @@ -10536,7 +10536,7 @@ export const coins = CoinMap.fromCoins([
'QCAD',
2,
UnderlyingAsset['algo:QCAD-84507107'],
'https://algoexplorer.io/asset/84507107',
'https://explorer.bitquery.io/algorand/token/84507107',
AccountCoin.DEFAULT_FEATURES,
'',
'QCAD'
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ abstract class Testnet extends BaseNetwork {
class Algorand extends Mainnet implements AccountNetwork {
name = 'Algorand';
family = CoinFamily.ALGO;
explorerUrl = 'https://algoexplorer.io/tx/';
explorerUrl = 'https://explorer.bitquery.io/algorand/tx/';
}

class AlgorandTestnet extends Testnet implements AccountNetwork {
name = 'AlgorandTestnet';
family = CoinFamily.ALGO;
explorerUrl = 'https://testnet.algoexplorer.io/tx/';
explorerUrl = 'https://explorer.bitquery.io/algorand_testnet/tx/';
}

class Ada extends Mainnet implements AdaNetwork {
Expand Down

0 comments on commit 816f0ef

Please sign in to comment.