Skip to content

Commit cdb23d3

Browse files
authored
feat: add Mantle support for follows (#502)
1 parent 2721797 commit cdb23d3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/helpers/actions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export async function sxSpaceExists(network: string, spaceId: string): Promise<b
130130
arb1: 'https://api.studio.thegraph.com/query/23545/sx-arbitrum/version/latest',
131131
oeth: 'https://api.studio.thegraph.com/query/23545/sx-optimism/version/latest',
132132
base: 'https://api.studio.thegraph.com/query/23545/sx-base/version/latest',
133+
mantle: 'https://mantle-api.snapshot.box',
133134
sn: 'https://api.snapshot.box',
134135
'sn-sep': 'https://testnet-api.snapshot.box',
135136
'linea-testnet':

src/helpers/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import snapshot from '@snapshot-labs/snapshot.js';
88
import { Response } from 'express';
99
import fetch from 'node-fetch';
1010

11-
const MAINNET_NETWORK_ID_WHITELIST = ['s', 'eth', 'matic', 'arb1', 'oeth', 'sn', 'base'];
11+
const MAINNET_NETWORK_ID_WHITELIST = ['s', 'eth', 'matic', 'arb1', 'oeth', 'sn', 'base', 'mantle'];
1212
const TESTNET_NETWORK_ID_WHITELIST = ['s-tn', 'sep', 'linea-testnet', 'sn-sep'];
1313
const broviderUrl = process.env.BROVIDER_URL ?? 'https://rpc.snapshot.org';
1414

0 commit comments

Comments
 (0)