File tree Expand file tree Collapse file tree 6 files changed +37
-13
lines changed Expand file tree Collapse file tree 6 files changed +37
-13
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ interface NetworkConfig {
18
18
name : string ;
19
19
symbol : string ;
20
20
decimals : number ;
21
+ logoURI ?: string ;
21
22
} ;
22
23
tokens ?: TokenConfig [ ] ;
23
24
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ interface NetworkConfig {
18
18
name : string ;
19
19
symbol : string ;
20
20
decimals : number ;
21
+ logoURI ?: string ;
21
22
} ;
22
23
tokens ?: TokenConfig [ ] ;
23
24
}
Original file line number Diff line number Diff line change @@ -818,7 +818,8 @@ var SUBSTRATE_NETWORKS = [
818
818
nativeCurrency : {
819
819
name : "Selendra" ,
820
820
symbol : "SEL" ,
821
- decimals : 18
821
+ decimals : 18 ,
822
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png"
822
823
} ,
823
824
ss58Format : 42 ,
824
825
genesisHash : "0x9e17c622381c36351de3ff9dc662282bf89ea2f420a9c55e23ff4fd815d2886a"
@@ -870,7 +871,8 @@ var EVM_NETWORKS = [
870
871
nativeCurrency : {
871
872
name : "Selendra" ,
872
873
symbol : "SEL" ,
873
- decimals : 18
874
+ decimals : 18 ,
875
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png"
874
876
} ,
875
877
tokens : [
876
878
{
@@ -892,14 +894,16 @@ var EVM_NETWORKS = [
892
894
nativeCurrency : {
893
895
name : "Ethereum" ,
894
896
symbol : "ETH" ,
895
- decimals : 18
897
+ decimals : 18 ,
898
+ logoURI : "https://cryptologos.cc/logos/ethereum-eth-logo.svg?v=040"
896
899
} ,
897
900
tokens : [
898
901
{
899
902
address : "0xdAC17F958D2ee523a2206206994597C13D831ec7" ,
900
903
name : "Tether USD" ,
901
904
symbol : "USDT" ,
902
- decimals : 6
905
+ decimals : 6 ,
906
+ logoURI : "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040"
903
907
} ,
904
908
{
905
909
address : "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" ,
@@ -919,14 +923,16 @@ var EVM_NETWORKS = [
919
923
nativeCurrency : {
920
924
name : "MATIC" ,
921
925
symbol : "MATIC" ,
922
- decimals : 18
926
+ decimals : 18 ,
927
+ logoURI : "https://cryptologos.cc/logos/polygon-matic-logo.svg?v=040"
923
928
} ,
924
929
tokens : [
925
930
{
926
931
address : "0xc2132D05D31c914a87C6611C10748AEb04B58e8F" ,
927
932
name : "Tether USD" ,
928
933
symbol : "USDT" ,
929
- decimals : 6
934
+ decimals : 6 ,
935
+ logoURI : "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040"
930
936
}
931
937
]
932
938
}
Original file line number Diff line number Diff line change @@ -784,7 +784,8 @@ var SUBSTRATE_NETWORKS = [
784
784
nativeCurrency : {
785
785
name : "Selendra" ,
786
786
symbol : "SEL" ,
787
- decimals : 18
787
+ decimals : 18 ,
788
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png"
788
789
} ,
789
790
ss58Format : 42 ,
790
791
genesisHash : "0x9e17c622381c36351de3ff9dc662282bf89ea2f420a9c55e23ff4fd815d2886a"
@@ -836,7 +837,8 @@ var EVM_NETWORKS = [
836
837
nativeCurrency : {
837
838
name : "Selendra" ,
838
839
symbol : "SEL" ,
839
- decimals : 18
840
+ decimals : 18 ,
841
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png"
840
842
} ,
841
843
tokens : [
842
844
{
@@ -858,14 +860,16 @@ var EVM_NETWORKS = [
858
860
nativeCurrency : {
859
861
name : "Ethereum" ,
860
862
symbol : "ETH" ,
861
- decimals : 18
863
+ decimals : 18 ,
864
+ logoURI : "https://cryptologos.cc/logos/ethereum-eth-logo.svg?v=040"
862
865
} ,
863
866
tokens : [
864
867
{
865
868
address : "0xdAC17F958D2ee523a2206206994597C13D831ec7" ,
866
869
name : "Tether USD" ,
867
870
symbol : "USDT" ,
868
- decimals : 6
871
+ decimals : 6 ,
872
+ logoURI : "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040"
869
873
} ,
870
874
{
871
875
address : "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" ,
@@ -885,14 +889,16 @@ var EVM_NETWORKS = [
885
889
nativeCurrency : {
886
890
name : "MATIC" ,
887
891
symbol : "MATIC" ,
888
- decimals : 18
892
+ decimals : 18 ,
893
+ logoURI : "https://cryptologos.cc/logos/polygon-matic-logo.svg?v=040"
889
894
} ,
890
895
tokens : [
891
896
{
892
897
address : "0xc2132D05D31c914a87C6611C10748AEb04B58e8F" ,
893
898
name : "Tether USD" ,
894
899
symbol : "USDT" ,
895
- decimals : 6
900
+ decimals : 6 ,
901
+ logoURI : "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040"
896
902
}
897
903
]
898
904
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bitriel-wallet-sdk" ,
3
- "version" : " 1.1.9 " ,
3
+ "version" : " 1.1.10 " ,
4
4
"description" : " This is bitriel Wallet SDK" ,
5
5
"main" : " ./dist/index.js" ,
6
6
"module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export interface NetworkConfig {
10
10
name : string ;
11
11
symbol : string ;
12
12
decimals : number ;
13
+ logoURI ?: string ;
13
14
} ;
14
15
tokens ?: TokenConfig [ ] ;
15
16
}
@@ -47,6 +48,7 @@ export const SUBSTRATE_NETWORKS: SubstrateNetworkConfig[] = [
47
48
name : "Selendra" ,
48
49
symbol : "SEL" ,
49
50
decimals : 18 ,
51
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png" ,
50
52
} ,
51
53
ss58Format : 42 ,
52
54
genesisHash :
@@ -100,6 +102,7 @@ export const EVM_NETWORKS: EVMNetworkConfig[] = [
100
102
name : "Selendra" ,
101
103
symbol : "SEL" ,
102
104
decimals : 18 ,
105
+ logoURI : "https://www.selendra.org/logo/sel-logo-blue-notext.png" ,
103
106
} ,
104
107
tokens : [
105
108
{
@@ -122,13 +125,16 @@ export const EVM_NETWORKS: EVMNetworkConfig[] = [
122
125
name : "Ethereum" ,
123
126
symbol : "ETH" ,
124
127
decimals : 18 ,
128
+ logoURI : "https://cryptologos.cc/logos/ethereum-eth-logo.svg?v=040" ,
125
129
} ,
126
130
tokens : [
127
131
{
128
132
address : "0xdAC17F958D2ee523a2206206994597C13D831ec7" ,
129
133
name : "Tether USD" ,
130
134
symbol : "USDT" ,
131
135
decimals : 6 ,
136
+ logoURI :
137
+ "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040" ,
132
138
} ,
133
139
{
134
140
address : "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" ,
@@ -149,13 +155,17 @@ export const EVM_NETWORKS: EVMNetworkConfig[] = [
149
155
name : "MATIC" ,
150
156
symbol : "MATIC" ,
151
157
decimals : 18 ,
158
+ logoURI :
159
+ "https://cryptologos.cc/logos/polygon-matic-logo.svg?v=040" ,
152
160
} ,
153
161
tokens : [
154
162
{
155
163
address : "0xc2132D05D31c914a87C6611C10748AEb04B58e8F" ,
156
164
name : "Tether USD" ,
157
165
symbol : "USDT" ,
158
166
decimals : 6 ,
167
+ logoURI :
168
+ "https://cryptologos.cc/logos/tether-usdt-logo.svg?v=040" ,
159
169
} ,
160
170
] ,
161
171
} ,
You can’t perform that action at this time.
0 commit comments