Skip to content

Commit 944ce91

Browse files
authored
Merge pull request #711 from bvotteler/chore-bump-version
Chore: bump version
2 parents 9bded45 + 5df06c3 commit 944ce91

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/types/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ export * from "./vault";
55
export * from "./loans";
66
export * from "./extrinsic";
77
export * from "./encoding";
8+
export * from "./oracleTypes";

src/utils/issueRedeem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)