Skip to content

Commit

Permalink
feat(oft-solana): change explorer from solana labs explorer to solscan (
Browse files Browse the repository at this point in the history
  • Loading branch information
nazreen authored Jan 7, 2025
1 parent cc871a1 commit 1798043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/oft-solana/tasks/solana/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const getLayerZeroScanLink = (hash: string, isTestnet = false) =>
isTestnet ? `https://testnet.layerzeroscan.com/tx/${hash}` : `https://layerzeroscan.com/tx/${hash}`

export const getExplorerTxLink = (hash: string, isTestnet = false) =>
`https://explorer.solana.com/tx/${hash}?cluster=${isTestnet ? 'devnet' : 'mainnet-beta'}`
`https://solscan.io/tx/${hash}?cluster=${isTestnet ? 'devnet' : 'mainnet-beta'}`

export const getAddressLookupTable = async (connection: Connection, umi: Umi, fromEid: EndpointId) => {
// Lookup Table Address and Priority Fee Calculation
Expand Down

0 comments on commit 1798043

Please sign in to comment.