Skip to content

Commit

Permalink
finishing
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed Jul 23, 2024
1 parent ec54b66 commit f8430df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
Binary file modified vite-hardhat/bun.lockb
Binary file not shown.
10 changes: 1 addition & 9 deletions vite-hardhat/hardhat.config.cts
Original file line number Diff line number Diff line change
Expand Up @@ -151,20 +151,12 @@ const config: HardhatUserConfig = {
},
scrollSepolia: {
url: 'https://sepolia-rpc.scroll.io',
accounts: vars.has('scroll_sepolia') ? [vars.get('scroll_sepolia')] : [],
accounts: vars.has('scrollSepolia') ? [vars.get('scrollSepolia')] : [],
},
holesky: {
url: 'https://holesky.drpc.org',
accounts: vars.has('holesky') ? [vars.get('holesky')] : [],
},
bsc: {
url: 'https://bsc-dataseed.bnbchain.org',
accounts: vars.has('bsc') ? [vars.get('bsc')] : [],
},
blast: {
url: 'https://rpc.envelop.is/blast',
accounts: vars.has('blast') ? [vars.get('blast')] : [],
},
},
paths: {
root: './',
Expand Down
2 changes: 1 addition & 1 deletion vite-hardhat/hooks/useOnChainVerification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function useOnChainVerification(proofData?: ProofData) {
render: 'Error verifying proof on-chain!',
isLoading: false,
});
console.error(error);
console.error(error.message);
}
}, [data, error]);

Expand Down

0 comments on commit f8430df

Please sign in to comment.