algo/sdkFixes: exposing safeBigIntToNumber()

This commit is contained in:
Paul Noel 2022-05-02 18:03:53 +00:00 committed by Evan Gray
parent a8dab4f428
commit d8c1be6e49
4 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 0.2.7
### Added
safeBigIntToNumber() utility function
## 0.2.6
### Added

View File

@ -1,6 +1,6 @@
{
"name": "@certusone/wormhole-sdk",
"version": "0.2.6",
"version": "0.2.7",
"description": "SDK for interacting with Wormhole",
"homepage": "https://wormholenetwork.com",
"main": "./lib/cjs/index.js",

View File

@ -14,3 +14,4 @@ export * as utils from "./utils";
export * as bridge from "./bridge";
export * as token_bridge from "./token_bridge";
export * as nft_bridge from "./nft_bridge";
export * as algorand from "./algorand";

View File

@ -2,3 +2,4 @@ export * from "./consts";
export * from "./createNonce";
export * from "./parseVaa";
export * from "./array";
export * from "./bigint";