@@ -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