Skip to content

Commit e07af73

Browse files
author
Inwon Kim
committedJan 19, 2023
1.3.0
1 parent 746a649 commit e07af73

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Version 1.3.0 - Jan 19, 2023 ([NPM](https://www.npmjs.com/package/icon-sdk-js), [CDN](https://cdn.jsdelivr.net/npm/icon-sdk-js@1.3.0))
4+
5+
#### Changes
6+
- Add btp extension APIs
7+
- Update dependencies
8+
39
### Version 1.2.11 - Dec 09, 2022 ([NPM](https://www.npmjs.com/package/icon-sdk-js), [CDN](https://cdn.jsdelivr.net/npm/icon-sdk-js@1.2.11))
410

511
#### Changes

‎lib/IconService.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ export default class IconService {
482482
return this.provider.request(request);
483483
}
484484

485-
/** *
485+
/**
486486
* Get BTP network information.
487487
* @param id - network id
488488
* @param height - Main block height
@@ -502,7 +502,7 @@ export default class IconService {
502502
return this.provider.request(request, (data) => new BTPNetworkInfo(data));
503503
}
504504

505-
/** *
505+
/**
506506
* Get BTP network type information.
507507
* @param id - Network type id
508508
* @param height - Main block height
@@ -525,7 +525,7 @@ export default class IconService {
525525
);
526526
}
527527

528-
/** *
528+
/**
529529
* Get BTP messages
530530
* @param networkID - BTP network ID
531531
* @param height - Main block height
@@ -541,7 +541,7 @@ export default class IconService {
541541
return this.provider.request<Array<string>>(request);
542542
}
543543

544-
/** *
544+
/**
545545
* Get BTP block header
546546
* @param networkID - Network id
547547
* @param height - Main block height
@@ -557,7 +557,7 @@ export default class IconService {
557557
return this.provider.request<string>(request);
558558
}
559559

560-
/** *
560+
/**
561561
* Get BTP block proof
562562
* @param networkID - Network id
563563
* @param height - Main block height
@@ -573,7 +573,7 @@ export default class IconService {
573573
return this.provider.request<string>(request);
574574
}
575575

576-
/** *
576+
/**
577577
* Get source network information
578578
* @return {HttpCall} The HttpCall instance for btp_getSourceInformation JSON-RPC API request.
579579
*/

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "icon-sdk-js",
3-
"version": "1.2.12",
3+
"version": "1.3.0",
44
"description": "JavaScript SDK for ICON",
55
"main": "./build/icon-sdk-js.node.min.js",
66
"types": "./build/index.d.ts",

0 commit comments

Comments
 (0)