Skip to content

Commit

Permalink
Merge pull request #150 from palladians/fix/tx-details-open-minaverse
Browse files Browse the repository at this point in the history
fix(tx): fix tx details minaverse links
  • Loading branch information
mrcnk authored Jan 30, 2024
2 parents e461b28 + dd05850 commit ed77d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/features/src/lib/explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export const getAccountUrl = ({
}: {
network: string
publicKey: string
}) => `${MINAVERSE_URL}/${network}/accounts/${publicKey}`
}) => `${MINAVERSE_URL}/${network.toLowerCase()}/accounts/${publicKey}`

export const getTransactionUrl = ({
network,
hash
}: {
network: string
hash: string
}) => `${MINAVERSE_URL}/${network}/transactions/${hash}`
}) => `${MINAVERSE_URL}/${network.toLowerCase()}/transactions/${hash}`

0 comments on commit ed77d3d

Please sign in to comment.