Skip to content

Commit

Permalink
Merge pull request #39 from tokenguardio/add-traces
Browse files Browse the repository at this point in the history
add traces flag
  • Loading branch information
rrozek authored Oct 10, 2024
2 parents 31120c3 + da819aa commit 778fdee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/dapp-analytics/dapp-analytics.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ export const startDappIndexerPod = async (
name: 'DAPP_ADDRESSES',
value: dappData.abis.map((abi) => abi.address).join(','),
},
{ name: 'TRACES', value: networkConfig.traces.toString() },
],
},
],
Expand Down
7 changes: 7 additions & 0 deletions src/config/dapp-analytics-networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,55 @@ const DAPP_ANALYTICS_NETWORKS = {
ss58Network: 'substrate',
gatewayUrl: 'https://v2.archive.subsquid.io/network/aleph-zero',
rpcIngestionDisabled: 'true',
traces: false,
},
'arbitrum-one': {
type: 'evm',
rpcEndpoint: 'not found yet',
ss58Network: 'irrelevant',
gatewayUrl: 'https://v2.archive.subsquid.io/network/arbitrum-one',
rpcIngestionDisabled: 'true',
traces: true,
},
'arbitrum-nova': {
type: 'evm',
rpcEndpoint: 'not found yet',
ss58Network: 'irrelevant',
gatewayUrl: 'https://v2.archive.subsquid.io/network/arbitrum-nova',
rpcIngestionDisabled: 'true',
traces: true,
},
astar: {
type: 'substrate',
rpcEndpoint: 'https://astar.api.onfinality.io/public',
ss58Network: 'astar',
gatewayUrl: 'https://v2.archive.subsquid.io/network/astar-substrate',
rpcIngestionDisabled: 'true',
traces: false,
},
avalanche: {
type: 'evm',
rpcEndpoint: 'not found yet',
ss58Network: 'irrelevant',
gatewayUrl: 'https://v2.archive.subsquid.io/network/avalanche-mainnet',
rpcIngestionDisabled: 'true',
traces: true,
},
moonbeam: {
type: 'evm',
rpcEndpoint: 'https://moonbeam.api.onfinality.io/public',
ss58Network: 'irrelevant',
gatewayUrl: 'https://v2.archive.subsquid.io/network/moonbeam-mainnet',
rpcIngestionDisabled: 'true',
traces: true,
},
optimism: {
type: 'evm',
rpcEndpoint: 'not found yet',
ss58Network: 'irrelevant',
gatewayUrl: 'https://v2.archive.subsquid.io/network/optimism-mainnet',
rpcIngestionDisabled: 'true',
traces: true,
},
};

Expand Down

0 comments on commit 778fdee

Please sign in to comment.