@ledgerhq/cryptoassets 13.14.1-nightly.0 → 13.15.0-nightly.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/lib/currencies.d.ts.map +1 -1
- package/lib/currencies.js +38 -180
- package/lib/currencies.js.map +1 -1
- package/lib-es/currencies.d.ts.map +1 -1
- package/lib-es/currencies.js +39 -181
- package/lib-es/currencies.js.map +1 -1
- package/package.json +1 -1
- package/src/currencies.ts +46 -181
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/cryptoassets@13.14.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/cryptoassets
|
|
2
|
+
> @ledgerhq/cryptoassets@13.14.1-nightly.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/cryptoassets
|
|
3
3
|
> tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
|
|
4
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @ledgerhq/cryptoassets
|
|
2
2
|
|
|
3
|
+
## 13.15.0-nightly.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#9649](https://github.com/LedgerHQ/ledger-live/pull/9649) [`1e56618`](https://github.com/LedgerHQ/ledger-live/commit/1e56618a3c31e7980074072e0aae9422c145f4b3) Thanks [@palra](https://github.com/palra)! - change explorer URLs to Blockscout for a variety of EVM coins
|
|
8
|
+
|
|
3
9
|
## 13.14.1-nightly.0
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/currencies.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"currencies.d.ts","sourceRoot":"","sources":["../src/currencies.ts"],"names":[],"mappings":"AAuBA,OAAO,
|
|
1
|
+
{"version":3,"file":"currencies.d.ts","sourceRoot":"","sources":["../src/currencies.ts"],"names":[],"mappings":"AAuBA,OAAO,EAEL,cAAc,EACd,gBAAgB,EAGjB,MAAM,8BAA8B,CAAC;AAuEtC,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAwsIzE,CAAC;AAaF;;;;GAIG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI,CA2BrE;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,aAAa,UAAQ,EACrB,cAAc,UAAQ,GACrB,cAAc,EAAE,CAQlB;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAChC,CAAC,EAAE,CAAC,IAAI,EAAE,cAAc,KAAK,OAAO,GACnC,cAAc,GAAG,IAAI,GAAG,SAAS,CAEnC;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,MAAM,GAAG,cAAc,GAAG,IAAI,GAAG,SAAS,CAE5F;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,MAAM,GAAG,cAAc,GAAG,IAAI,GAAG,SAAS,CAE5F;AAED,wBAAgB,sBAAsB,CAAC,EAAE,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS,CAE7E;AAaD;;;GAGG;AACH,eAAO,MAAM,2BAA2B,YAC7B,MAAM,uBAEd,cAAc,GAAG,IAAI,GAAG,SAc1B,CAAC;AAEF,eAAO,MAAM,kCAAkC,mBAC7B,MAAM,KACrB,cAAc,GAAG,IAAI,GAAG,SAS1B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,OAAQ,MAAM,KAAG,OAAqC,CAAC;AAEvF,wBAAgB,qBAAqB,CAAC,EAAE,EAAE,MAAM,GAAG,cAAc,CAQhE"}
|
package/lib/currencies.js
CHANGED
|
@@ -24,6 +24,18 @@
|
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.getCryptoCurrencyById = exports.hasCryptoCurrencyId = exports.findCryptoCurrencyByManagerAppName = exports.findCryptoCurrencyByKeyword = exports.findCryptoCurrencyById = exports.findCryptoCurrencyByTicker = exports.findCryptoCurrencyByScheme = exports.findCryptoCurrency = exports.listCryptoCurrencies = exports.registerCryptoCurrency = exports.cryptocurrenciesById = void 0;
|
|
26
26
|
const types_cryptoassets_1 = require("@ledgerhq/types-cryptoassets");
|
|
27
|
+
/**
|
|
28
|
+
* Make an ExplorerView for a Blockscout based explorer
|
|
29
|
+
* @private
|
|
30
|
+
* @param baseURL The explorer base URL. It MUST be properly formatted with no trailing slash. No checks are performed.
|
|
31
|
+
*/
|
|
32
|
+
function blockscoutExplorerView(baseURL) {
|
|
33
|
+
return {
|
|
34
|
+
tx: `${baseURL}/tx/$hash`,
|
|
35
|
+
address: `${baseURL}/address/$address`,
|
|
36
|
+
token: `${baseURL}/address/$address?tab=token_transfer&token=$contractAddress`,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
27
39
|
const makeTestnetUnit = u => ({ ...u, code: `𝚝${u.code}` });
|
|
28
40
|
const bitcoinUnits = [
|
|
29
41
|
{
|
|
@@ -3592,13 +3604,7 @@ exports.cryptocurrenciesById = {
|
|
|
3592
3604
|
ethereumLikeInfo: {
|
|
3593
3605
|
chainId: 42161,
|
|
3594
3606
|
},
|
|
3595
|
-
explorerViews: [
|
|
3596
|
-
{
|
|
3597
|
-
tx: "https://arbiscan.io/tx/$hash",
|
|
3598
|
-
address: "https://arbiscan.io/address/$address",
|
|
3599
|
-
token: "https://arbiscan.io/token/$contractAddress?a=$address",
|
|
3600
|
-
},
|
|
3601
|
-
],
|
|
3607
|
+
explorerViews: [blockscoutExplorerView("https://arbitrum.blockscout.com")],
|
|
3602
3608
|
},
|
|
3603
3609
|
arbitrum_sepolia: {
|
|
3604
3610
|
type: "CryptoCurrency",
|
|
@@ -3617,13 +3623,7 @@ exports.cryptocurrenciesById = {
|
|
|
3617
3623
|
ethereumLikeInfo: {
|
|
3618
3624
|
chainId: 421614,
|
|
3619
3625
|
},
|
|
3620
|
-
explorerViews: [
|
|
3621
|
-
{
|
|
3622
|
-
tx: "https://sepolia.arbiscan.io/tx/$hash",
|
|
3623
|
-
address: "https://sepolia.arbiscan.io/address/$address",
|
|
3624
|
-
token: "https://sepolia.arbiscan.io/token/$contractAddress?a=$address",
|
|
3625
|
-
},
|
|
3626
|
-
],
|
|
3626
|
+
explorerViews: [blockscoutExplorerView("https://arbitrum-sepolia.blockscout.com")],
|
|
3627
3627
|
},
|
|
3628
3628
|
// Cronos EVM blockchain
|
|
3629
3629
|
cronos: {
|
|
@@ -3646,13 +3646,7 @@ exports.cryptocurrenciesById = {
|
|
|
3646
3646
|
magnitude: 18,
|
|
3647
3647
|
},
|
|
3648
3648
|
],
|
|
3649
|
-
explorerViews: [
|
|
3650
|
-
{
|
|
3651
|
-
tx: "https://cronoscan.com/tx/$hash",
|
|
3652
|
-
address: "https://cronoscan.com/address/$address",
|
|
3653
|
-
token: "https://cronoscan.com/token/$contractAddress?a=$address",
|
|
3654
|
-
},
|
|
3655
|
-
],
|
|
3649
|
+
explorerViews: [blockscoutExplorerView("https://cronos.org/explorer")],
|
|
3656
3650
|
},
|
|
3657
3651
|
fantom: {
|
|
3658
3652
|
type: "CryptoCurrency",
|
|
@@ -3690,12 +3684,7 @@ exports.cryptocurrenciesById = {
|
|
|
3690
3684
|
chainId: 14,
|
|
3691
3685
|
},
|
|
3692
3686
|
units: ethereumUnits("FLR", "FLR"),
|
|
3693
|
-
explorerViews: [
|
|
3694
|
-
{
|
|
3695
|
-
tx: "https://flare-explorer.flare.network/tx/$hash/internal-transactions",
|
|
3696
|
-
address: "https://flare-explorer.flare.network/address/$address/transactions",
|
|
3697
|
-
},
|
|
3698
|
-
],
|
|
3687
|
+
explorerViews: [blockscoutExplorerView("https://flare-explorer.flare.network")],
|
|
3699
3688
|
},
|
|
3700
3689
|
songbird: {
|
|
3701
3690
|
type: "CryptoCurrency",
|
|
@@ -3711,12 +3700,7 @@ exports.cryptocurrenciesById = {
|
|
|
3711
3700
|
chainId: 19,
|
|
3712
3701
|
},
|
|
3713
3702
|
units: ethereumUnits("SGB", "SGB"),
|
|
3714
|
-
explorerViews: [
|
|
3715
|
-
{
|
|
3716
|
-
tx: "https://songbird-explorer.flare.network/tx/$hash/internal-transactions",
|
|
3717
|
-
address: "https://songbird-explorer.flare.network/address/$address/transactions",
|
|
3718
|
-
},
|
|
3719
|
-
],
|
|
3703
|
+
explorerViews: [blockscoutExplorerView("https://songbird-explorer.flare.network")],
|
|
3720
3704
|
},
|
|
3721
3705
|
moonbeam: {
|
|
3722
3706
|
type: "CryptoCurrency",
|
|
@@ -3760,13 +3744,7 @@ exports.cryptocurrenciesById = {
|
|
|
3760
3744
|
ethereumLikeInfo: {
|
|
3761
3745
|
chainId: 30,
|
|
3762
3746
|
},
|
|
3763
|
-
explorerViews: [
|
|
3764
|
-
{
|
|
3765
|
-
tx: "https://explorer.rootstock.io/tx/$hash",
|
|
3766
|
-
address: "https://explorer.rootstock.io/address/$address",
|
|
3767
|
-
token: "https://explorer.rootstock.io/address/$address",
|
|
3768
|
-
},
|
|
3769
|
-
],
|
|
3747
|
+
explorerViews: [blockscoutExplorerView("https://rootstock.blockscout.com")],
|
|
3770
3748
|
},
|
|
3771
3749
|
bittorrent: {
|
|
3772
3750
|
type: "CryptoCurrency",
|
|
@@ -3804,13 +3782,7 @@ exports.cryptocurrenciesById = {
|
|
|
3804
3782
|
ethereumLikeInfo: {
|
|
3805
3783
|
chainId: 10,
|
|
3806
3784
|
},
|
|
3807
|
-
explorerViews: [
|
|
3808
|
-
{
|
|
3809
|
-
tx: "https://optimistic.etherscan.io/tx/$hash",
|
|
3810
|
-
address: "https://optimistic.etherscan.io/address/$address",
|
|
3811
|
-
token: "https://optimistic.etherscan.io/token/$contractAddress?a=$address",
|
|
3812
|
-
},
|
|
3813
|
-
],
|
|
3785
|
+
explorerViews: [blockscoutExplorerView("https://optimism.blockscout.com")],
|
|
3814
3786
|
keywords: ["optimism"],
|
|
3815
3787
|
},
|
|
3816
3788
|
optimism_sepolia: {
|
|
@@ -3828,13 +3800,7 @@ exports.cryptocurrenciesById = {
|
|
|
3828
3800
|
ethereumLikeInfo: {
|
|
3829
3801
|
chainId: 11155420,
|
|
3830
3802
|
},
|
|
3831
|
-
explorerViews: [
|
|
3832
|
-
{
|
|
3833
|
-
tx: "https://sepolia-optimism.etherscan.io/tx/$hash",
|
|
3834
|
-
address: "https://sepolia-optimism.etherscan.io/address/$address",
|
|
3835
|
-
token: "https://sepolia-optimism.etherscan.io/token/$contractAddress?a=$address",
|
|
3836
|
-
},
|
|
3837
|
-
],
|
|
3803
|
+
explorerViews: [blockscoutExplorerView("https://optimism-sepolia.blockscout.com")],
|
|
3838
3804
|
},
|
|
3839
3805
|
energy_web: {
|
|
3840
3806
|
type: "CryptoCurrency",
|
|
@@ -3850,13 +3816,7 @@ exports.cryptocurrenciesById = {
|
|
|
3850
3816
|
ethereumLikeInfo: {
|
|
3851
3817
|
chainId: 246,
|
|
3852
3818
|
},
|
|
3853
|
-
explorerViews: [
|
|
3854
|
-
{
|
|
3855
|
-
tx: "https://explorer.energyweb.org/tx/$hash",
|
|
3856
|
-
address: "https://explorer.energyweb.org/address/$address",
|
|
3857
|
-
token: "https://explorer.energyweb.org/token/$contractAddress?a=$address",
|
|
3858
|
-
},
|
|
3859
|
-
],
|
|
3819
|
+
explorerViews: [blockscoutExplorerView("https://explorer.energyweb.org")],
|
|
3860
3820
|
},
|
|
3861
3821
|
astar: {
|
|
3862
3822
|
type: "CryptoCurrency",
|
|
@@ -3872,13 +3832,7 @@ exports.cryptocurrenciesById = {
|
|
|
3872
3832
|
ethereumLikeInfo: {
|
|
3873
3833
|
chainId: 592,
|
|
3874
3834
|
},
|
|
3875
|
-
explorerViews: [
|
|
3876
|
-
{
|
|
3877
|
-
tx: "https://blockscout.com/astar/tx/$hash",
|
|
3878
|
-
address: "https://blockscout.com/astar/address/$address",
|
|
3879
|
-
token: "https://blockscout.com/astar/token/$contractAddress?a=$address",
|
|
3880
|
-
},
|
|
3881
|
-
],
|
|
3835
|
+
explorerViews: [blockscoutExplorerView("https://astar.blockscout.com")],
|
|
3882
3836
|
},
|
|
3883
3837
|
metis: {
|
|
3884
3838
|
type: "CryptoCurrency",
|
|
@@ -3894,13 +3848,7 @@ exports.cryptocurrenciesById = {
|
|
|
3894
3848
|
ethereumLikeInfo: {
|
|
3895
3849
|
chainId: 1088,
|
|
3896
3850
|
},
|
|
3897
|
-
explorerViews: [
|
|
3898
|
-
{
|
|
3899
|
-
tx: "https://andromeda-explorer.metis.io/tx/$hash",
|
|
3900
|
-
address: "https://andromeda-explorer.metis.io/address/$address",
|
|
3901
|
-
token: "https://andromeda-explorer.metis.io/token/$contractAddress?a=$address",
|
|
3902
|
-
},
|
|
3903
|
-
],
|
|
3851
|
+
explorerViews: [blockscoutExplorerView("https://andromeda-explorer.metis.io")],
|
|
3904
3852
|
},
|
|
3905
3853
|
boba: {
|
|
3906
3854
|
type: "CryptoCurrency",
|
|
@@ -3960,13 +3908,7 @@ exports.cryptocurrenciesById = {
|
|
|
3960
3908
|
ethereumLikeInfo: {
|
|
3961
3909
|
chainId: 106,
|
|
3962
3910
|
},
|
|
3963
|
-
explorerViews: [
|
|
3964
|
-
{
|
|
3965
|
-
tx: "https://evmexplorer.velas.com/tx/$hash",
|
|
3966
|
-
address: "https://evmexplorer.velas.com/address/$address",
|
|
3967
|
-
token: "https://evmexplorer.velas.com/token/$contractAddress?a=$address",
|
|
3968
|
-
},
|
|
3969
|
-
],
|
|
3911
|
+
explorerViews: [blockscoutExplorerView("https://evmexplorer.velas.com")],
|
|
3970
3912
|
},
|
|
3971
3913
|
syscoin: {
|
|
3972
3914
|
type: "CryptoCurrency",
|
|
@@ -3982,13 +3924,7 @@ exports.cryptocurrenciesById = {
|
|
|
3982
3924
|
ethereumLikeInfo: {
|
|
3983
3925
|
chainId: 57,
|
|
3984
3926
|
},
|
|
3985
|
-
explorerViews: [
|
|
3986
|
-
{
|
|
3987
|
-
tx: "https://explorer.syscoin.org/tx/$hash",
|
|
3988
|
-
address: "https://explorer.syscoin.org/address/$address",
|
|
3989
|
-
token: "https://explorer.syscoin.org/token/$contractAddress?a=$address",
|
|
3990
|
-
},
|
|
3991
|
-
],
|
|
3927
|
+
explorerViews: [blockscoutExplorerView("https://explorer.syscoin.org")],
|
|
3992
3928
|
},
|
|
3993
3929
|
telos_evm: {
|
|
3994
3930
|
type: "CryptoCurrency",
|
|
@@ -4026,13 +3962,7 @@ exports.cryptocurrenciesById = {
|
|
|
4026
3962
|
ethereumLikeInfo: {
|
|
4027
3963
|
chainId: 1101,
|
|
4028
3964
|
},
|
|
4029
|
-
explorerViews: [
|
|
4030
|
-
{
|
|
4031
|
-
tx: "https://zkevm.polygonscan.com/tx/$hash",
|
|
4032
|
-
address: "https://zkevm.polygonscan.com/address/$address",
|
|
4033
|
-
token: "https://zkevm.polygonscan.com/token/$contractAddress?a=$address",
|
|
4034
|
-
},
|
|
4035
|
-
],
|
|
3965
|
+
explorerViews: [blockscoutExplorerView("https://zkevm.blockscout.com")],
|
|
4036
3966
|
},
|
|
4037
3967
|
polygon_zk_evm_testnet: {
|
|
4038
3968
|
type: "CryptoCurrency",
|
|
@@ -4051,13 +3981,7 @@ exports.cryptocurrenciesById = {
|
|
|
4051
3981
|
ethereumLikeInfo: {
|
|
4052
3982
|
chainId: 1442,
|
|
4053
3983
|
},
|
|
4054
|
-
explorerViews: [
|
|
4055
|
-
{
|
|
4056
|
-
tx: "https://testnet-zkevm.polygonscan.com/tx/$hash",
|
|
4057
|
-
address: "https://testnet-zkevm.polygonscan.com/address/$address",
|
|
4058
|
-
token: "https://testnet-zkevm.polygonscan.com/token/$contractAddress?a=$address",
|
|
4059
|
-
},
|
|
4060
|
-
],
|
|
3984
|
+
explorerViews: [blockscoutExplorerView("https://explorer-ui.cardona.zkevm-rpc.com")],
|
|
4061
3985
|
},
|
|
4062
3986
|
base: {
|
|
4063
3987
|
type: "CryptoCurrency",
|
|
@@ -4073,13 +3997,7 @@ exports.cryptocurrenciesById = {
|
|
|
4073
3997
|
ethereumLikeInfo: {
|
|
4074
3998
|
chainId: 8453,
|
|
4075
3999
|
},
|
|
4076
|
-
explorerViews: [
|
|
4077
|
-
{
|
|
4078
|
-
tx: "https://basescan.org/tx/$hash",
|
|
4079
|
-
address: "https://basescan.org/address/$address",
|
|
4080
|
-
token: "https://basescan.org/token/$contractAddress?a=$address",
|
|
4081
|
-
},
|
|
4082
|
-
],
|
|
4000
|
+
explorerViews: [blockscoutExplorerView("https://base.blockscout.com")],
|
|
4083
4001
|
},
|
|
4084
4002
|
base_sepolia: {
|
|
4085
4003
|
type: "CryptoCurrency",
|
|
@@ -4098,13 +4016,7 @@ exports.cryptocurrenciesById = {
|
|
|
4098
4016
|
ethereumLikeInfo: {
|
|
4099
4017
|
chainId: 84532,
|
|
4100
4018
|
},
|
|
4101
|
-
explorerViews: [
|
|
4102
|
-
{
|
|
4103
|
-
tx: "https://sepolia.basescan.org/tx/$hash",
|
|
4104
|
-
address: "https://sepolia.basescan.org/address/$address",
|
|
4105
|
-
token: "https://sepolia.basescan.org/token/$contractAddress?a=$address",
|
|
4106
|
-
},
|
|
4107
|
-
],
|
|
4019
|
+
explorerViews: [blockscoutExplorerView("https://base-sepolia.blockscout.com")],
|
|
4108
4020
|
},
|
|
4109
4021
|
klaytn: {
|
|
4110
4022
|
type: "CryptoCurrency",
|
|
@@ -4142,13 +4054,7 @@ exports.cryptocurrenciesById = {
|
|
|
4142
4054
|
ethereumLikeInfo: {
|
|
4143
4055
|
chainId: 245022934,
|
|
4144
4056
|
},
|
|
4145
|
-
explorerViews: [
|
|
4146
|
-
{
|
|
4147
|
-
tx: "https://neonscan.org/tx/$hash",
|
|
4148
|
-
address: "https://neonscan.org/address/$address",
|
|
4149
|
-
token: "https://neonscan.org/token/$address",
|
|
4150
|
-
},
|
|
4151
|
-
],
|
|
4057
|
+
explorerViews: [blockscoutExplorerView("https://neon.blockscout.com")],
|
|
4152
4058
|
},
|
|
4153
4059
|
lukso: {
|
|
4154
4060
|
type: "CryptoCurrency",
|
|
@@ -4165,13 +4071,7 @@ exports.cryptocurrenciesById = {
|
|
|
4165
4071
|
ethereumLikeInfo: {
|
|
4166
4072
|
chainId: 42,
|
|
4167
4073
|
},
|
|
4168
|
-
explorerViews: [
|
|
4169
|
-
{
|
|
4170
|
-
tx: "https://explorer.execution.mainnet.lukso.network/tx/$hash",
|
|
4171
|
-
address: "https://explorer.execution.mainnet.lukso.network/address/$address",
|
|
4172
|
-
token: "https://explorer.execution.mainnet.lukso.network/token/$address",
|
|
4173
|
-
},
|
|
4174
|
-
],
|
|
4074
|
+
explorerViews: [blockscoutExplorerView("https://explorer.execution.mainnet.lukso.network")],
|
|
4175
4075
|
},
|
|
4176
4076
|
linea: {
|
|
4177
4077
|
type: "CryptoCurrency",
|
|
@@ -4235,13 +4135,7 @@ exports.cryptocurrenciesById = {
|
|
|
4235
4135
|
ethereumLikeInfo: {
|
|
4236
4136
|
chainId: 81457,
|
|
4237
4137
|
},
|
|
4238
|
-
explorerViews: [
|
|
4239
|
-
{
|
|
4240
|
-
tx: "https://blastscan.io/tx/$hash",
|
|
4241
|
-
address: "https://blastscan.io/address/$address",
|
|
4242
|
-
token: "https://blastscan.io/token/$address",
|
|
4243
|
-
},
|
|
4244
|
-
],
|
|
4138
|
+
explorerViews: [blockscoutExplorerView("https://blast.blockscout.com")],
|
|
4245
4139
|
},
|
|
4246
4140
|
blast_sepolia: {
|
|
4247
4141
|
type: "CryptoCurrency",
|
|
@@ -4259,13 +4153,7 @@ exports.cryptocurrenciesById = {
|
|
|
4259
4153
|
ethereumLikeInfo: {
|
|
4260
4154
|
chainId: 168587773,
|
|
4261
4155
|
},
|
|
4262
|
-
explorerViews: [
|
|
4263
|
-
{
|
|
4264
|
-
tx: "https://testnet.blastscan.io/tx/$hash",
|
|
4265
|
-
address: "https://testnet.blastscan.io/address/$address",
|
|
4266
|
-
token: "https://testnet.blastscan.io/token/$address",
|
|
4267
|
-
},
|
|
4268
|
-
],
|
|
4156
|
+
explorerViews: [blockscoutExplorerView("https://blast-testnet.blockscout.com")],
|
|
4269
4157
|
},
|
|
4270
4158
|
scroll: {
|
|
4271
4159
|
type: "CryptoCurrency",
|
|
@@ -4282,13 +4170,7 @@ exports.cryptocurrenciesById = {
|
|
|
4282
4170
|
ethereumLikeInfo: {
|
|
4283
4171
|
chainId: 534352,
|
|
4284
4172
|
},
|
|
4285
|
-
explorerViews: [
|
|
4286
|
-
{
|
|
4287
|
-
tx: "https://scrollscan.com/tx/$hash",
|
|
4288
|
-
address: "https://scrollscan.com/address/$address",
|
|
4289
|
-
token: "https://scrollscan.com/token/$address",
|
|
4290
|
-
},
|
|
4291
|
-
],
|
|
4173
|
+
explorerViews: [blockscoutExplorerView("https://scroll.blockscout.com")],
|
|
4292
4174
|
},
|
|
4293
4175
|
scroll_sepolia: {
|
|
4294
4176
|
type: "CryptoCurrency",
|
|
@@ -4306,13 +4188,7 @@ exports.cryptocurrenciesById = {
|
|
|
4306
4188
|
ethereumLikeInfo: {
|
|
4307
4189
|
chainId: 534351,
|
|
4308
4190
|
},
|
|
4309
|
-
explorerViews: [
|
|
4310
|
-
{
|
|
4311
|
-
tx: "https://sepolia.scrollscan.dev/tx/$hash",
|
|
4312
|
-
address: "https://sepolia.scrollscan.dev/address/$address",
|
|
4313
|
-
token: "https://sepolia.scrollscan.dev/token/$address",
|
|
4314
|
-
},
|
|
4315
|
-
],
|
|
4191
|
+
explorerViews: [blockscoutExplorerView("https://scroll-sepolia.blockscout.com")],
|
|
4316
4192
|
},
|
|
4317
4193
|
etherlink: {
|
|
4318
4194
|
type: "CryptoCurrency",
|
|
@@ -4328,13 +4204,7 @@ exports.cryptocurrenciesById = {
|
|
|
4328
4204
|
ethereumLikeInfo: {
|
|
4329
4205
|
chainId: 42793,
|
|
4330
4206
|
},
|
|
4331
|
-
explorerViews: [
|
|
4332
|
-
{
|
|
4333
|
-
tx: "https://explorer.etherlink.com/tx/$hash",
|
|
4334
|
-
address: "https://explorer.etherlink.com/address/$address",
|
|
4335
|
-
token: "https://explorer.etherlink.com/token/$contractAddress?a=$address",
|
|
4336
|
-
},
|
|
4337
|
-
],
|
|
4207
|
+
explorerViews: [blockscoutExplorerView("https://explorer.etherlink.com")],
|
|
4338
4208
|
},
|
|
4339
4209
|
zksync: {
|
|
4340
4210
|
type: "CryptoCurrency",
|
|
@@ -4350,13 +4220,7 @@ exports.cryptocurrenciesById = {
|
|
|
4350
4220
|
ethereumLikeInfo: {
|
|
4351
4221
|
chainId: 324,
|
|
4352
4222
|
},
|
|
4353
|
-
explorerViews: [
|
|
4354
|
-
{
|
|
4355
|
-
tx: "https://explorer.zksync.io/tx/$hash",
|
|
4356
|
-
address: "https://explorer.zksync.io/address/$address",
|
|
4357
|
-
token: "https://explorer.zksync.io/token/$contractAddress?a=$address",
|
|
4358
|
-
},
|
|
4359
|
-
],
|
|
4223
|
+
explorerViews: [blockscoutExplorerView("https://zksync.blockscout.com")],
|
|
4360
4224
|
},
|
|
4361
4225
|
zksync_sepolia: {
|
|
4362
4226
|
type: "CryptoCurrency",
|
|
@@ -4372,13 +4236,7 @@ exports.cryptocurrenciesById = {
|
|
|
4372
4236
|
ethereumLikeInfo: {
|
|
4373
4237
|
chainId: 300,
|
|
4374
4238
|
},
|
|
4375
|
-
explorerViews: [
|
|
4376
|
-
{
|
|
4377
|
-
tx: "https://sepolia-era.zksync.network/tx/$hash",
|
|
4378
|
-
address: "https://sepolia-era.zksync.network/address/$address",
|
|
4379
|
-
token: "https://sepolia-era.zksync.network/token/$contractAddress?a=$address",
|
|
4380
|
-
},
|
|
4381
|
-
],
|
|
4239
|
+
explorerViews: [blockscoutExplorerView("https://zksync-sepolia.blockscout.com")],
|
|
4382
4240
|
},
|
|
4383
4241
|
// Keep it at the bottom
|
|
4384
4242
|
// Tickers dup
|