diff --git a/pkg/types/deposit.go b/pkg/types/deposit.go index d45a4da24..78d3ae10d 100644 --- a/pkg/types/deposit.go +++ b/pkg/types/deposit.go @@ -188,12 +188,18 @@ func getExplorerURL(network string, txID string) string { return getBscNetworkExplorerURL(txID) case "ETH": return getEthNetworkExplorerURL(txID) + case "ARBITRUM", "ARB": + return getArbitrumExplorerURL(txID) } return "" } +func getArbitrumExplorerURL(txID string) string { + return "https://arbiscan.io/tx/" + txID +} + func getEthNetworkExplorerURL(txID string) string { return "https://etherscan.io/tx/" + txID }