@@ -14,31 +14,31 @@ const defaultList: AssetType[] = [
1414 {
1515 symbol : 'LUNC' ,
1616 name : 'Luna Classic' ,
17- logoURI : 'https://assets.terra.money /icon/svg/Luna.svg' ,
17+ logoURI : ` ${ NETWORK . TERRA_ASSETS_URL } /icon/svg/Luna.svg` ,
1818 terraToken : AssetNativeDenomEnum . uluna ,
1919 } ,
2020 {
2121 symbol : AssetSymbolEnum . UST ,
2222 name : 'Terra Classic USD' ,
23- logoURI : 'https://assets.terra.money /icon/60/UST.png' ,
23+ logoURI : ` ${ NETWORK . TERRA_ASSETS_URL } /icon/60/UST.png` ,
2424 terraToken : AssetNativeDenomEnum . uusd ,
2525 } ,
2626 {
2727 symbol : AssetSymbolEnum . KRT ,
2828 name : 'Terra Classic KRW' ,
29- logoURI : 'https://assets.terra.money /icon/60/KRT.png' ,
29+ logoURI : ` ${ NETWORK . TERRA_ASSETS_URL } /icon/60/KRT.png` ,
3030 terraToken : AssetNativeDenomEnum . ukrw ,
3131 } ,
3232 {
3333 symbol : AssetSymbolEnum . SDT ,
3434 name : 'Terra Classic SDR' ,
35- logoURI : 'https://assets.terra.money /icon/60/SDT.png' ,
35+ logoURI : ` ${ NETWORK . TERRA_ASSETS_URL } /icon/60/SDT.png` ,
3636 terraToken : AssetNativeDenomEnum . usdr ,
3737 } ,
3838 {
3939 symbol : AssetSymbolEnum . MNT ,
4040 name : 'Terra Classic MNT' ,
41- logoURI : 'https://assets.terra.money /icon/60/MNT.png' ,
41+ logoURI : ` ${ NETWORK . TERRA_ASSETS_URL } /icon/60/MNT.png` ,
4242 terraToken : AssetNativeDenomEnum . umnt ,
4343 } ,
4444]
@@ -80,7 +80,7 @@ const useApp = (): {
8080 ContractStore . initOnlyTerraWhiteList
8181 )
8282 const fetchAssets = async ( path : TerraAssetsPathEnum ) : Promise < any > => {
83- return ( await fetch ( `${ NETWORK . TERRA_ASSETS_URL } ${ path } ` ) ) . json ( )
83+ return ( await fetch ( `${ NETWORK . TERRA_ASSETS_URL } / ${ path } ` ) ) . json ( )
8484 }
8585
8686 const getContractAddress = async ( ) : Promise < void > => {
0 commit comments