Skip to content

Commit

Permalink
fix: export getBridgeAbi function instead of abi object from the prev…
Browse files Browse the repository at this point in the history
…ious implementation
  • Loading branch information
IOVgomezdn committed Sep 5, 2023
1 parent feff32e commit 0da7ba8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ContractParser } from './lib/ContractParser'
import { BcSearch } from './lib/BcSearch'
import Contract from './lib/Contract'
import bridge from './lib/nativeContracts/bridgeAbi'
const abi = { bridge }
import { getBridgeAbi } from './lib/nativeContracts/bridgeAbi'
const abi = { bridge: getBridgeAbi }
export { ContractParser, BcSearch, Contract, abi }
export default ContractParser

0 comments on commit 0da7ba8

Please sign in to comment.