Skip to content

Commit 0cf2ed6

Browse files
committed
Added Vetiver to the tools and changed version to Vetiver-9.0.0
1 parent 1f150c0 commit 0cf2ed6

File tree

3 files changed

+55
-36
lines changed

3 files changed

+55
-36
lines changed

package-lock.json

Lines changed: 44 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rsksmart/rsk-precompiled-abis",
3-
"version": "8.1.1-REED",
3+
"version": "9.0.0-VETIVER",
44
"description": "Utility to interact with RSK native contracts",
55
"main": "index.js",
66
"repository": {

tools/PrecompiledAbis.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ <h5 class='text-center'>Simple html page to get bridge methods selectors and eve
8585
</div>
8686
<div class="col-9">
8787
<select id='abiForForkSelect' class='form-select form-select-sm' aria-label=''>
88-
<option selected value='reed'>Reed</option>
88+
<option selected value='vetiver'>Vetiver</option>
89+
<option value='reed'>Reed</option>
8990
<option value='lovell'>Lovell</option>
9091
<option value='arrowhead'>Arrowhead</option>
9192
<option value='fingerroot'>Fingerroot</option>
@@ -167,7 +168,7 @@ <h5 class="modal-title" id="exampleModalLabel">Abi</h5>
167168
const arrowheadAbisUrl = 'https://raw.githubusercontent.com/rsksmart/rsk-precompiled-abis/6.0.0-ARROWHEAD/abis/bridge.json';
168169
const lovellAbisUrl = 'https://raw.githubusercontent.com/rsksmart/rsk-precompiled-abis/7.0.0-LOVELL/abis/bridge.json';
169170
const reedAbisUrl = 'https://raw.githubusercontent.com/rsksmart/rsk-precompiled-abis/8.0.0-REED/abis/bridge.json';
170-
const reed810AbisUrl = 'https://raw.githubusercontent.com/rsksmart/rsk-precompiled-abis/8.1.0-REED/abis/bridge.json';
171+
const vetiverAbisUrl = 'https://raw.githubusercontent.com/rsksmart/rsk-precompiled-abis/9.0.0-VETIVER/abis/bridge.json';
171172

172173
const abisForkInfoMap = {
173174
orchid: {
@@ -220,6 +221,11 @@ <h5 class="modal-title" id="exampleModalLabel">Abi</h5>
220221
key: 'reed810',
221222
url: reed810AbisUrl
222223
},
224+
vetiver: {
225+
name: '9.0.0-VETIVER',
226+
key: 'vetiver',
227+
url: vetiverAbisUrl
228+
},
223229
};
224230

225231
const abiCache = {
@@ -233,6 +239,7 @@ <h5 class="modal-title" id="exampleModalLabel">Abi</h5>
233239
lovell: null,
234240
reed: null,
235241
reed810: null,
242+
vetiver: null,
236243
};
237244

238245
const peginMethods = [
@@ -282,7 +289,7 @@ <h5 class="modal-title" id="exampleModalLabel">Abi</h5>
282289
];
283290

284291
let selectedAbis = null;
285-
let selectedAbiForkInfo = abisForkInfoMap.reed810;
292+
let selectedAbiForkInfo = abisForkInfoMap.vetiver;
286293

287294
selectedAbisUrl.href = selectedAbiForkInfo.url;
288295
selectedAbisUrl.textContent = selectedAbiForkInfo.url;

0 commit comments

Comments
 (0)