Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/scripts/link-to-wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const switchToChain = async (chainId: string, ethereum: MetaMaskInpageProvider)
method: "wallet_switchEthereumChain",
params: [{ chainId }],
})
console.log(`Succesfully switched to chain ${chainId} in metamask`)
console.log(`Successfully switched to chain ${chainId} in metamask`)
}

/**
Expand Down Expand Up @@ -199,7 +199,7 @@ const validateLinkAddress = async (address: string, provider: Web3Provider) => {
symbol = await linkContract.symbol()
decimals = await linkContract.decimals()
} catch (error) {
throw new Error(`Error occured while trying to fetch linkContract metadata ${error}`)
throw new Error(`Error occurred while trying to fetch linkContract metadata ${error}`)
}

let chainId: keyof typeof linkNameSymbol
Expand Down
Loading