You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
486 B
16 lines
486 B
import { dirname, resolve } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
const __filename = fileURLToPath(
|
|
// import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'es2022', 'esnext', 'system', 'node16', or 'nodenext'
|
|
// biome-ignore lint/suspicious/noTsIgnore: _
|
|
// @ts-ignore
|
|
import.meta.url,
|
|
)
|
|
const __dirname = dirname(__filename)
|
|
|
|
export const mainnetTrustedSetupPath = resolve(
|
|
__dirname,
|
|
'../trusted-setups/mainnet.json',
|
|
)
|