We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbc0d2 commit 484bc4aCopy full SHA for 484bc4a
watcher/src/utils/near.ts
@@ -10,8 +10,10 @@ import {
10
WormholePublishEventLog,
11
} from '../types/near';
12
13
+// The following is obtained by going to: https://explorer.near.org/accounts/contract.wormhole_crypto.near
14
+// and watching the network tab in the browser to see where the explorer is going.
15
const NEAR_EXPLORER_TRANSACTION_URL =
- 'https://backend-mainnet-1713.onrender.com/trpc/transaction.listByAccountId';
16
+ 'https://explorer-backend-mainnet-prod-24ktefolwq-uc.a.run.app/trpc/transaction.listByAccountId';
17
export const NEAR_ARCHIVE_RPC = 'https://archival-rpc.mainnet.near.org';
18
19
export const getNearProvider = async (rpc: string): Promise<Provider> => {
0 commit comments