Skip to content

Commit f52d73b

Browse files
committed
updated rsk-precompiled-abis to VETIVER
1 parent f006086 commit f52d73b

File tree

3 files changed

+1874
-838
lines changed

3 files changed

+1874
-838
lines changed

lib/bridge-provider.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const precompiledAbisLovell = require('@rsksmart/rsk-precompiled-abis-lovell');
1+
const precompiledAbis = require('@rsksmart/rsk-precompiled-abis');
22
const Web3 = require('web3');
33

44
/**
@@ -8,8 +8,8 @@ const Web3 = require('web3');
88
*/
99
const getBridge = async (rskClient) => {
1010
return new rskClient.eth.Contract(
11-
precompiledAbisLovell.bridge.abi,
12-
precompiledAbisLovell.bridge.address
11+
precompiledAbis.bridge.abi,
12+
precompiledAbis.bridge.address
1313
);
1414
};
1515

@@ -18,7 +18,7 @@ const getBridge = async (rskClient) => {
1818
* @returns {json} The bridge abi in json format
1919
*/
2020
const getBridgeAbi = async () => {
21-
return precompiledAbisLovell.bridge.abi;
21+
return precompiledAbis.bridge.abi;
2222
};
2323

2424
module.exports = {

0 commit comments

Comments
 (0)