From 886da4003a0f79e2ffa162a112335bbd37e7c379 Mon Sep 17 00:00:00 2001 From: Adam Goth Date: Wed, 24 Apr 2024 14:54:30 +0200 Subject: [PATCH] Add tenderly spock URL --- modules/gql/gql.constants.ts | 1 + modules/web3/constants/networks.ts | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/gql/gql.constants.ts b/modules/gql/gql.constants.ts index 2d4310826..60084d485 100644 --- a/modules/gql/gql.constants.ts +++ b/modules/gql/gql.constants.ts @@ -11,6 +11,7 @@ export const LOCAL_SPOCK_URL = 'http://localhost:3001/v1'; export const GOERLI_SPOCK_URL = 'https://pollingdb2-goerli-staging.makerdux.com/api/v1'; export const STAGING_MAINNET_SPOCK_URL = 'https://pollingdb2-mainnet-staging.makerdux.com/api/v1'; export const MAINNET_SPOCK_URL = 'https://pollingdb2-mainnet-prod.makerdux.com/api/v1'; +export const TENDERLY_SPOCK_URL = 'https://pollingdb2-tenderly-staging.makerdux.com/api/v1'; export enum QueryFilterNames { Active = 'active', diff --git a/modules/web3/constants/networks.ts b/modules/web3/constants/networks.ts index 20f8197ea..7d4d096db 100644 --- a/modules/web3/constants/networks.ts +++ b/modules/web3/constants/networks.ts @@ -16,7 +16,8 @@ import { MAINNET_SPOCK_URL, STAGING_MAINNET_SPOCK_URL, GOERLI_SPOCK_URL, - LOCAL_SPOCK_URL + LOCAL_SPOCK_URL, + TENDERLY_SPOCK_URL } from 'modules/gql/gql.constants'; export enum SupportedConnectors { @@ -128,7 +129,7 @@ export const CHAIN_INFO: ChainInfo = { type: 'normal', network: SupportedNetworks.TENDERLY, defaultRpc: NodeProviders.TENDERLY, - spockUrl: STAGING_MAINNET_SPOCK_URL, + spockUrl: TENDERLY_SPOCK_URL, rpcs: { [NodeProviders.TENDERLY]: `https://virtual.mainnet.rpc.tenderly.co/${config.TENDERLY_RPC_KEY}` },