Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JeneaVranceanu committed May 29, 2024
1 parent 9f992cb commit f792071
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/components/endpoints/Assets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import { Lsp4Metadata, Token } from '@/types'
import { ContractStandard } from '@/enums'
import CustomSelect from '@/components/shared/CustomSelect.vue'
import { useLspFactory } from '@/compositions/useLspFactory'
import { addTokenToLocalStore, encodeAssetMetadata, recalculateAssets } from '@/helpers/tokenUtils'
import {
addTokenToLocalStore,
encodeAssetMetadata,
recalculateAssets,
} from '@/helpers/tokenUtils'
import { useERC20 } from '@/compositions/useErc20'
import { LSP8_TOKEN_ID_FORMAT } from '@lukso/lsp-smart-contracts'
import { LSP4_TOKEN_TYPES } from '@lukso/lsp4-contracts'
Expand Down
4 changes: 3 additions & 1 deletion src/components/endpoints/GetNetworkId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ const addNetwork = async () => {
onMounted(() => {
const selectedNetworkChainId = getSelectedNetworkConfig()
const networkInfo = networks.find(element => hexToNumber(element.chainId) === selectedNetworkChainId.chainId)
const networkInfo = networks.find(
element => hexToNumber(element.chainId) === selectedNetworkChainId.chainId
)
if (networkInfo) {
activeNetwork.value = networkInfo
}
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const NETWORKS: { [K in NetworkType]: NetworkInfo } = {
url: 'https://explorer.execution.mainnet.lukso.network',
},
chainId: 42,

// The sample values are currently just junk.
sampleEoA: '0xD634fc59DE7fCb60677322B2B114Ab70756e70be',
sampleUP: '0x21CFF5BCe6F7845734fCC3915FEeaC7C7D89588D',
Expand Down

0 comments on commit f792071

Please sign in to comment.