Skip to content

Commit 3260bd2

Browse files
committed
fix: remove rpc
Signed-off-by: Tomás Migone <[email protected]>
1 parent 65b6d26 commit 3260bd2

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

packages/eslint-graph-config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default [
3636
'@typescript-eslint/no-inferrable-types': 'warn',
3737
'@typescript-eslint/no-empty-function': 'warn',
3838
'no-only-tests/no-only-tests': 'error',
39-
'no-secrets/no-secrets': ['error', { tolerance: 4.1 }],
39+
'no-secrets/no-secrets': ['error', { tolerance: 5.1 }],
4040
'sort-imports': [
4141
'warn', {
4242
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],

packages/horizon/hardhat.config.ts

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,35 +43,26 @@ const config: HardhatUserConfig = {
4343
sources: './contracts',
4444
},
4545
secureAccounts: {
46-
enabled: true,
46+
enabled: false,
4747
},
4848
networks: {
4949
hardhat: {
50-
secureAccounts: {
51-
enabled: false,
52-
},
5350
accounts: {
5451
mnemonic: 'myth like bonus scare over problem client lizard pioneer submit female collect',
5552
},
56-
forking: {
57-
url: 'https://graph:[email protected]/',
58-
},
5953
},
6054
fork: {
61-
secureAccounts: {
62-
enabled: false,
63-
},
6455
url: 'http://localhost:8545',
6556
accounts: getNetworkAccounts(),
6657
},
6758
arbitrumSepolia: {
59+
secureAccounts: {
60+
enabled: true,
61+
},
6862
chainId: 421614,
6963
url: 'https://sepolia-rollup.arbitrum.io/rpc',
7064
},
7165
arbitrumVirtualTestnet: {
72-
secureAccounts: {
73-
enabled: false,
74-
},
7566
chainId: 421615,
7667
url: ARBITRUM_VIRTUAL_TESTNET_URL,
7768
accounts: getNetworkAccounts(),

0 commit comments

Comments
 (0)