Skip to content

Commit

Permalink
fix: add assert to script import json
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Aug 5, 2024
1 parent 2f74c22 commit 1d85aba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions script/insert_op_stack_abi/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import _ from 'lodash';
import { EVMContractVerification } from '../../src/models';
import proxy from './abis/proxy.json';
import l1_block from './abis/l1_block.json';
import l2_cross_domain_messenger from './abis/l2_cross_domain_messenger.json';
import l2_standard_bridge from './abis/l2_standard_bridge.json';
import l2_to_l1_message_passer from './abis/l2_to_l1_message_passer.json';
import proxy from './abis/proxy.json' assert { type: 'json' };
import l1_block from './abis/l1_block.json' assert { type: 'json' };
import l2_cross_domain_messenger from './abis/l2_cross_domain_messenger.json' assert { type: 'json' };
import l2_standard_bridge from './abis/l2_standard_bridge.json' assert { type: 'json' };
import l2_to_l1_message_passer from './abis/l2_to_l1_message_passer.json' assert { type: 'json' };

export async function insertContractVerification(_payload: {
contracts: {
Expand Down

0 comments on commit 1d85aba

Please sign in to comment.