Skip to content

Commit

Permalink
💚 Fix examples imports
Browse files Browse the repository at this point in the history
  • Loading branch information
acuarica committed Nov 30, 2023
1 parent 125ba4d commit 983240e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Compound.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import { EtherscanProvider } from 'ethers';
import { Contract } from 'sevm';
import 'sevm-4byte';
import 'sevm/4byte';

const provider = new EtherscanProvider();
const bytecode = await provider.getCode('0x3FDA67f7583380E67ef93072294a7fAc882FD7E7');
Expand Down
2 changes: 1 addition & 1 deletion examples/USDC.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import { JsonRpcProvider } from 'ethers';
import { Contract } from 'sevm';
import 'sevm-4byte';
import 'sevm/4byte';

const provider = new JsonRpcProvider('https://api.avax-test.network/ext/bc/C/rpc');
const bytecode = await provider.getCode('0x5425890298aed601595a70AB815c96711a31Bc65');
Expand Down

0 comments on commit 983240e

Please sign in to comment.