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 69bdd93
Showing 1 changed file with 2 additions and 2 deletions.
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 69bdd93

Please sign in to comment.