File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " @interlay/interbtc-api" ,
3- "version" : " 2.6.0-rc.0 " ,
3+ "version" : " 2.6.0" ,
44 "description" : " JavaScript library to interact with interBTC" ,
55 "main" : " build/cjs/src/index.js" ,
66 "module" : " build/esm/src/index.js" ,
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ export * from "./vault";
55export * from "./loans" ;
66export * from "./extrinsic" ;
77export * from "./encoding" ;
8+ export * from "./oracleTypes" ;
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export function getRequestIdsFromEvents(
6969 eventToFind : AugmentedEvent < ApiTypes , AnyTuple > ,
7070 api : ApiPromise
7171) : Hash [ ] {
72- const ids = new Array < Hash > ( ) ;
72+ const ids : Hash [ ] = [ ] ;
7373 for ( const { event } of events ) {
7474 if ( eventToFind . is ( event ) ) {
7575 // the redeem id has type H256 and is the first item of the event data array
You can’t perform that action at this time.
0 commit comments