Package detail

@bitgo/account-lib

BitGo6.9kISC27.4.1

BitGo's account library functions

readme

BitGo Account Lib

This library is responsible for building and signing transactions for account-based coins (for example, Ethereum, Algorand, EOS, Tron, etc.). Account Lib was developed for BitGo and BitGo's multi-sig wallets, but it can also be used independently, outside of our wallet ecosystem.

Account Lib can be used in an offline environment.

Supported Coins

Below is the list of coins supported by this library -- as well as those that are on the roadmap.

Coin Mainnet Ticker Testnet Ticker Supported In Library
Alogrand algo talgo Yes
CELO celo tcelo Yes
Ethereum eth teth Yes
Ethereum Classic etc tetc Yes
RSK rbtc trbtc Yes
Stellar xlm txlm Not yet...
Tezos xtz txtz Yes
Tron trx ttrx Yes

Core Concepts

TransactionBuilder

The TranssactionBuilder class guides a user through the construction of a transaction. The purpose of the TransactionBuilder is to yield a Transaction object that can broadcast to the network.

Transaction

Transaction objects are JavaScript representations of blockchain transactions that implement protocol specific validation rules. Transactions provide encoding mechanisms that allow them to be validly broadcast to their respective network.

Transaction Types

TransactionBuilder supports the following transaction types:

  • Send: Transfers funds from a wallet.

  • Wallet Initialization: Initializes a wallet's account on the network (e.g., multi-sig contract deployment).

  • Address Initialization: Initializes a wallet's address on the network (e.g., forwarder contract deployment).

  • Account Update: Updates an account on the network (e.g., public key revelation operation for Tezos).

Offline Availability

Account Lib was designed to be used for offline signings in an offline environment.


Installation

Install the library with npm. If you plan on contributing to the project, you may wish to follow different installation instructions outlined in this doc.

$ cd <your_project>
$ npm install @bitgo/account-lib

Usage

Below is an example that demonstrates how the library can be used to build and sign a Tron testnet transaction.

Instantiation

Instantiate the TransactionBuilder for the coin you want to work with:

// Import the package (javascript import)
const accountLib = require('@bitgo/account-lib');
// or import the pacakage using typescript
import * as accountLib from '@bitgo/account-lib';

// Instantiate the Transaction Builder for Tron (testnet)
const txBuilder = accountLib.getBuilder('ttrx');

Transaction Construction and Signing

Use the transaction builder instance (created in the previous step) to sign a transaction:

// Define an unsigned Tron transaction object
const unsignedBuildTransaction = {
  visible: false,
  txID: '80b8b9eaed51c8bba3b49f7f0e7cc5f21ac99a6f3e2893c663b544bf2c695b1d',
  raw_data: {
    contract: [
      {
        parameter: {
          value: {
            amount: 1718,
            owner_address: '41c4530f6bfa902b7398ac773da56106a15af15f92',
            to_address: '4189ffaf9da8c6fae32189b2e6dce228249b1129aa',
          },
          type_url: 'type.googleapis.com/protocol.TransferContract',
        },
        type: 'TransferContract',
      },
    ],
    ref_block_bytes: '90e4',
    ref_block_hash: 'a018bf9892ddb138',
    expiration: 1571811468000,
    timestamp: 1571811410819,
  },
  raw_data_hex:
    '0a0290e42208a018bf9892ddb13840e0c58ebadf2d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541c4530f6bfa902b7398ac773da56106a15af15f9212154189ffaf9da8c6fae32189b2e6dce228249b1129aa18b60d7083878bbadf2d',
};

// Use that object to build and sign a transaction
txBuilder.from(unsignedBuildTransaction);
txBuilder.sign({
  key: 'A81B2E0C55A7E2B2E837ZZC437A6397B316536196989A6F09EE49C19AD33590W',
});
const tx = await txBuilder.build();

More examples:

Developers

If you'd like to contribute to this project, see the developer guide for contribution norms and expectations.

There is a near-term goal to move this library toward a plugin-based architecture for coin registration. Until then, PRs adding support for new coins will be put on hold.

changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

27.4.1 (2025-06-25)

Note: Version bump only for package @bitgo/account-lib

27.4.0 (2025-06-24)

Features

  • use common evm sdk in account-lib & coin factory (743fdb2)

27.3.0 (2025-06-18)

Features

  • add the transaction builder changes for ape chain (2b82d82)

27.2.0 (2025-06-10)

Features

  • account-lib: add sdk-coin-vet in account-lib (024e5c8)

27.1.0 (2025-06-05)

Features

  • root: support node 22 (c4ad6af)
  • sdk-coin-asi: add statics and SDK support for ASI (38baf3c)

27.0.2 (2025-06-02)

Note: Version bump only for package @bitgo/account-lib

27.0.1 (2025-05-28)

Note: Version bump only for package @bitgo/account-lib

27.0.0 (2025-05-22)

Bug Fixes

  • sdk-coin-fetchai: change asset name from fetch to fetchai (9cc7236)

BREAKING CHANGES

  • sdk-coin-fetchai: Changing module/asset name from fetch to fetchai

26.0.0 (2025-05-20)

Bug Fixes

  • sdk-coin-initia: change asset name from init to initia (87c65dd)

BREAKING CHANGES

  • sdk-coin-initia: Changing module/asset name from init to initia

25.2.0 (2025-05-07)

Features

  • sdk-coin-cronos: add SDK Skeleton for Cronos (7209807)
  • sdk-coin-fetch: add SDK Skeleton for Fetch (2990b21)
  • sdk-coin-init: add SDK Skeleton for Initia (d93936f)

25.1.0 (2025-04-29)

Features

  • sdk-coin-soneium: add transaction builder (921cdbd)

25.0.0 (2025-04-25)

Code Refactoring

  • remove unused bls and eth2 codebase (4ffd5bd)

Features

  • sdk-coin-mon: add transaction builder (cff759f)
  • sdk-coin-stt: add transaction builder (1e77306)
  • sdk-coin-world: add transaction builder (30e888e)

BREAKING CHANGES

  • remove bls and eth2 sdk

TICKET: WP-3961

24.5.12 (2025-04-15)

Note: Version bump only for package @bitgo/account-lib

24.5.11 (2025-04-04)

Note: Version bump only for package @bitgo/account-lib

24.5.10 (2025-04-02)

Note: Version bump only for package @bitgo/account-lib

24.5.9 (2025-03-28)

Note: Version bump only for package @bitgo/account-lib

24.5.8 (2025-03-20)

Note: Version bump only for package @bitgo/account-lib

24.5.7 (2025-03-18)

Note: Version bump only for package @bitgo/account-lib

24.5.6 (2025-03-06)

Note: Version bump only for package @bitgo/account-lib

24.5.5 (2025-03-04)

Note: Version bump only for package @bitgo/account-lib

24.5.4 (2025-02-26)

Note: Version bump only for package @bitgo/account-lib

24.5.3 (2025-02-20)

Note: Version bump only for package @bitgo/account-lib

24.5.2 (2025-02-19)

Note: Version bump only for package @bitgo/account-lib

24.5.1 (2025-02-11)

Bug Fixes

  • sdk-coin-tao: fix coinBuilderMap for tao (b592e09)

24.5.0 (2025-02-05)

Features

  • sdk-coin-tao: add missing statics for tao (422bb1a)
  • sdk-coin-tao: add missing statics for tao (70ef26f)

24.4.0 (2025-01-28)

Features

  • docker config for flr,sgb,xdc,wemix (8b65d3f)

24.3.1 (2025-01-23)

Note: Version bump only for package @bitgo/account-lib

24.3.0 (2025-01-23)

Features

  • sdk-coin-baby: add SDK support for babylon (932541b)

24.2.0 (2025-01-20)

Features

  • sdk-coin-icp: added ICP skeleton code (5215ce9)

24.1.9 (2025-01-15)

Note: Version bump only for package @bitgo/account-lib

24.1.8 (2025-01-09)

Note: Version bump only for package @bitgo/account-lib

24.1.7 (2025-01-03)

Note: Version bump only for package @bitgo/account-lib

24.1.6 (2024-12-24)

Note: Version bump only for package @bitgo/account-lib

24.1.5 (2024-12-19)

Note: Version bump only for package @bitgo/account-lib

24.1.4 (2024-12-17)

Note: Version bump only for package @bitgo/account-lib

24.1.3 (2024-12-17)

Note: Version bump only for package @bitgo/account-lib

24.1.2 (2024-12-12)

Note: Version bump only for package @bitgo/account-lib

24.1.1 (2024-12-11)

Note: Version bump only for package @bitgo/account-lib

24.1.0 (2024-12-03)

Features

  • add @types/keccak to packages that use it (7e25872)

24.0.0 (2024-11-26)

Features

  • sdk-coin-apt: addition of apt skeleton in account-lib (b6c5e93)
  • sdk-coin-celo: support eip1559 for celo (3a7a64d)

BREAKING CHANGES

  • sdk-coin-celo: This commit updates the hardfork of testnet celo, which changes the final v value and adds support to eip1559 txn

23.3.1 (2024-11-21)

Note: Version bump only for package @bitgo/account-lib

23.3.0 (2024-11-19)

Bug Fixes

Features

  • sdk-coin-coredao: add coredao sdk skeleton (0e6ce18)
  • sdk-coin-oas: add oas sdk skeleton (d04f601)

23.2.3 (2024-11-14)

Note: Version bump only for package @bitgo/account-lib

23.2.2 (2024-11-08)

Note: Version bump only for package @bitgo/account-lib

23.2.1 (2024-11-07)

Note: Version bump only for package @bitgo/account-lib

23.2.0 (2024-11-01)

Features

  • sdk-coin-rune: new coin generation (64775ca)

23.1.10 (2024-10-22)

Note: Version bump only for package @bitgo/account-lib

23.1.9 (2024-10-15)

Note: Version bump only for package @bitgo/account-lib

23.1.8 (2024-10-08)

Note: Version bump only for package @bitgo/account-lib

23.1.7 (2024-10-04)

Note: Version bump only for package @bitgo/account-lib

23.1.6 (2024-09-24)

Note: Version bump only for package @bitgo/account-lib

23.1.5 (2024-09-19)

Note: Version bump only for package @bitgo/account-lib

23.1.4 (2024-09-16)

Note: Version bump only for package @bitgo/account-lib

23.1.3 (2024-09-10)

Note: Version bump only for package @bitgo/account-lib

23.1.2 (2024-09-03)

Note: Version bump only for package @bitgo/account-lib

23.1.1 (2024-08-29)

Note: Version bump only for package @bitgo/account-lib

23.1.0 (2024-08-27)

Features

  • sdk-coin-bera: add bera sdk skeleton (db64fa8)

23.0.31 (2024-08-20)

Note: Version bump only for package @bitgo/account-lib

23.0.30 (2024-08-13)

Note: Version bump only for package @bitgo/account-lib

23.0.29 (2024-08-07)

Note: Version bump only for package @bitgo/account-lib

23.0.28 (2024-07-30)

Note: Version bump only for package @bitgo/account-lib

23.0.27 (2024-07-24)

Note: Version bump only for package @bitgo/account-lib

23.0.26 (2024-07-16)

Note: Version bump only for package @bitgo/account-lib

23.0.25 (2024-07-04)

Note: Version bump only for package @bitgo/account-lib

23.0.24 (2024-07-02)

Note: Version bump only for package @bitgo/account-lib

23.0.23 (2024-06-27)

Note: Version bump only for package @bitgo/account-lib

23.0.22 (2024-06-26)

Note: Version bump only for package @bitgo/account-lib

23.0.21 (2024-06-21)

Note: Version bump only for package @bitgo/account-lib

23.0.20 (2024-06-20)

Note: Version bump only for package @bitgo/account-lib

23.0.19 (2024-06-14)

Note: Version bump only for package @bitgo/account-lib

23.0.18 (2024-06-11)

Note: Version bump only for package @bitgo/account-lib

23.0.17 (2024-06-05)

Bug Fixes

  • update @solana/web3.js to 1.92.1 (830c728)

23.0.16 (2024-05-31)

Note: Version bump only for package @bitgo/account-lib

23.0.15 (2024-05-28)

Note: Version bump only for package @bitgo/account-lib

23.0.14 (2024-05-22)

Note: Version bump only for package @bitgo/account-lib

23.0.13 (2024-05-17)

Note: Version bump only for package @bitgo/account-lib

23.0.12 (2024-05-13)

Note: Version bump only for package @bitgo/account-lib

23.0.11 (2024-05-08)

Note: Version bump only for package @bitgo/account-lib

23.0.10 (2024-05-01)

Note: Version bump only for package @bitgo/account-lib

23.0.9 (2024-04-25)

Note: Version bump only for package @bitgo/account-lib

23.0.8 (2024-04-24)

Note: Version bump only for package @bitgo/account-lib

23.0.7 (2024-04-22)

Note: Version bump only for package @bitgo/account-lib

23.0.6 (2024-04-17)

Bug Fixes

  • sdk-coin-sol: update split with latest SOL library (85d3cc3)

23.0.5 (2024-04-12)

Note: Version bump only for package @bitgo/account-lib

23.0.4 (2024-04-10)

Note: Version bump only for package @bitgo/account-lib

23.0.3 (2024-04-09)

Note: Version bump only for package @bitgo/account-lib

23.0.2 (2024-04-08)

Note: Version bump only for package @bitgo/account-lib

23.0.1 (2024-04-05)

Note: Version bump only for package @bitgo/account-lib

23.0.0 (2024-03-28)

Features

  • root: deprecate node 16 (d3ec624)

BREAKING CHANGES

  • root: Node 16 is no longer supported in bitgojs. TICKET: WP-1100

22.0.4 (2024-03-19)

Note: Version bump only for package @bitgo/account-lib

22.0.3 (2024-03-11)

Note: Version bump only for package @bitgo/account-lib

22.0.2 (2024-02-28)

Note: Version bump only for package @bitgo/account-lib

22.0.1 (2024-02-22)

Note: Version bump only for package @bitgo/account-lib

22.0.0 (2024-02-19)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

21.0.0 (2024-01-30)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

20.0.0 (2024-01-26)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

19.0.0 (2024-01-26)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

18.0.0 (2024-01-25)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

17.0.0 (2024-01-22)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

16.0.0 (2024-01-09)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

15.0.0 (2024-01-03)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-coin-zketh: add zketh sdk skeleton (dd2952f)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

14.0.0 (2023-12-18)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

13.0.0 (2023-12-12)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

12.0.0 (2023-12-09)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

11.0.0 (2023-12-05)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

10.0.0 (2023-11-28)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

9.0.0 (2023-11-24)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

8.0.0 (2023-11-17)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

7.0.0 (2023-11-13)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

6.0.0 (2023-11-13)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

5.0.0 (2023-11-13)

Bug Fixes

  • account-lib: pin substrate txwrapper (e0c4b16)
  • rename coin 'core' to 'coreum' in coinBuilderMap (e85f658)
  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)
  • sdk-core: fix issue related to bignumber version (519fe47)

Code Refactoring

  • rename coin 'core' to 'coreum' (baecc01)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

BREAKING CHANGES

  • rename coin module, coin name, named exports for coreum

4.15.0 (2023-10-20)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

Features

  • account-lib: add holesky testnet coin (0aaefc0)
  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

4.14.0 (2023-10-18)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

Features

  • account-lib: expose Ton from sdk (14c8b18)
  • sdk-coin-arbeth: add arbeth sdk skeleton (f86018e)
  • sdk-coin-bera: add Berachain skeleton (b3d43c5)
  • sdk-coin-core: add coreum sdk (af73ccd)
  • sdk-coin-islm: add Islamic Coin (c49bdd1)
  • sdk-coin-opeth: add opeth sdk skeleton (42fbefa)
  • sdk-core: generate and verify schnorr proof of X_i (ff58298)
  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

4.13.0 (2023-09-25)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

Features

  • update secp256k1 to 5.0.0 and keccak to 3.0.3 (e2c37e6)

4.12.11 (2023-09-11)

Note: Version bump only for package @bitgo/account-lib

4.12.10 (2023-09-09)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.9 (2023-09-09)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.8 (2023-09-07)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.7 (2023-09-05)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.6 (2023-09-01)

Bug Fixes

  • root: update @types/node (cedc1a0)
  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.5 (2023-08-29)

Bug Fixes

  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.4 (2023-08-25)

Bug Fixes

  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.3 (2023-08-24)

Bug Fixes

  • sdk-coin-dot: update DOT sdk to latest (9385f80)

4.12.2 (2023-08-16)

Note: Version bump only for package @bitgo/account-lib

4.12.1 (2023-08-16)

Note: Version bump only for package @bitgo/account-lib

4.12.0 (2023-08-04)

Features

  • root: add node 18 to engines and CI (9cc6a70)
  • root: remove node 14 from engines (6ec47cb)
  • sdk-coin-zeta: zeta sdk init along with testcases (b92d793)

4.11.0 (2023-07-28)

Features

  • root: add node 18 to engines and CI (9cc6a70)
  • root: remove node 14 from engines (6ec47cb)
  • sdk-coin-zeta: zeta sdk init along with testcases (b92d793)

4.10.0 (2023-07-18)

Features

  • sdk-coin-injective: injective sdk init along with testcases (5064a10)
  • sdk-coin-injective: injective sdk init along with testcases (3cf36cc)

Reverts

  • Revert "chore(sdk-coin-bnb): create new bnb module" (e998a04)

4.9.0 (2023-06-21)

Features

  • sdk-coin-bld: agoric sdk along with testcases (ed60702)
  • sdk-coin-hash: provenance sdk init along with testcases (3862212)
  • sdk-coin-sei: sei sdk init along with testcases (d7fac3f)

4.8.1 (2023-06-14)

Note: Version bump only for package @bitgo/account-lib

4.8.0 (2023-06-13)

Features

  • abstract-cosmos: sdk abstract-cosmos and sdk osmo refactored (d1bb5f6)
  • account-lib: add osmo (4e4d69b)
  • account-lib: add osmo (d8eeaa4)
  • sdk-coin-tia: celestia sdk along with testcases (1d104e0)
  • sdk-core: make paillier proofs mandatory (4c62dd8)

4.7.1 (2023-06-07)

Bug Fixes

  • sdk-coin-trx: os agnostic commands (6a740f2)

4.7.0 (2023-06-05)

Bug Fixes

  • sdk-lib-mpc: pallier -> paillier (9d0a12d)

Features

  • root: add optional paillier proof plumbing (18093bf)
  • sdk-core: refactor signConvert to steps (94e2cae)
  • sdk-core: simplify mpc.appendChallenge (67bee8f)
  • sdk-lib-mpc: make rangeProof challenges mandatory for appendChallenge (1f68b30)

4.6.0 (2023-05-25)

Features

  • root: implement eddsa signing with commitment (d67ac81)

4.5.3 (2023-05-17)

Bug Fixes

  • bitgo: drone is no longer used in this repo so can safely be removed (badc0de), closes #3554 #3554

4.5.2 (2023-05-10)

Note: Version bump only for package @bitgo/account-lib

4.5.1 (2023-05-03)

Note: Version bump only for package @bitgo/account-lib

4.5.0 (2023-04-25)

Features

  • sdk-core: update ecdsa signing to use enterprise challenge (c626f00)

4.4.3 (2023-04-20)

Note: Version bump only for package @bitgo/account-lib

4.4.2 (2023-04-13)

Note: Version bump only for package @bitgo/account-lib

4.4.1 (2023-02-17)

Bug Fixes

  • polygon recovery with range proof (19317f7)

4.4.0 (2023-02-16)

Bug Fixes

  • account-lib: modify ECDSA keyShare to use bip32 lib (9ce8f23)

Features

  • account-lib: make rangeproof stuff async (380f288)
  • sdk-coin-atom: add atom to account-lib (9786381)

4.3.0 (2023-02-08)

Features

  • account-lib: make rangeproof stuff async (380f288)
  • sdk-coin-atom: add atom to account-lib (9786381)

4.2.3 (2023-01-30)

Note: Version bump only for package @bitgo/account-lib

4.2.2 (2023-01-25)

Note: Version bump only for package @bitgo/account-lib

4.2.1 (2022-12-23)

Note: Version bump only for package @bitgo/account-lib

4.2.0 (2022-12-20)

Features

  • sdk-core: derive unhardened method for ecdsa (4684bff)

4.1.2 (2022-12-09)

Note: Version bump only for package @bitgo/account-lib

4.1.1 (2022-12-06)

Note: Version bump only for package @bitgo/account-lib

4.1.0 (2022-12-01)

Features

  • sdk-core: add keyDerive to ECDSA TSS implementation (9ff1d89)

4.0.0 (2022-11-29)

Features

  • sdk-coin-sui: added sui to account-lib (e4a21fc)
  • sdk-core: add VSS share generation and verification (619f254)

BREAKING CHANGES

  • sdk-core: Key shares require a v value for combination. ISSUE: BG-57633

3.0.0 (2022-11-04)

Features

  • sdk-coin-sui: added sui to account-lib (e4a21fc)
  • sdk-core: add VSS share generation and verification (619f254)

BREAKING CHANGES

  • sdk-core: Key shares require a v value for combination. ISSUE: BG-57633

2.24.0 (2022-10-27)

Features

  • sdk-coin-sui: added sui to account-lib (e4a21fc)

2.23.1 (2022-10-25)

Note: Version bump only for package @bitgo/account-lib

2.23.0 (2022-10-18)

Bug Fixes

  • account-lib: fix EDDSA MPC key validation for small number keys (f9f7407)
  • account-lib: shamir secret indices validity (4e22783)
  • sdk-coin-eth: fixes to the sign and verify functions for eth tss (ce79269)
  • sdk-core: ecdsa send signing bitgo's n share u (1cb1e93)

Features

  • account-lib: add option to pass in custom seed ecdsa (86b205e)
  • account-lib: add support for additional hash algorithms (4e2aefe)
  • account-lib: custom salt shamir share (fa34652)
  • sdk-coin-bsc: create bsc module (b55ca71)
  • sdk-core: add recid to fully constructed signature (a8adcd9)
  • sdk-core: implement signing flow ecdsa (68aa561)

BREAKING CHANGES

  • sdk-core: The SShare type's r field is now R (33 bytes encoded as 66 hex characters). ISSUE: BG-56664

2.20.0 (2022-07-19)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.38 (2022-07-19)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.37 (2022-07-18)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.36 (2022-07-15)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.35 (2022-07-15)

Bug Fixes

  • account-lib: fix proper format for compressed hex points (3882452)

2.20.0-rc.34 (2022-07-14)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.32 (2022-07-12)

Features

  • account-lib: update hbar txData and explainTx to support diff instructions (b604de6)

2.20.0-rc.31 (2022-07-11)

Bug Fixes

  • sol ata init transactions (c8ff4b9)
  • update invalid files for depcheck (6aae9aa)

Features

  • sdk-coin-stx: refactor stx to its own module (80866b4)
  • sdk-coin-xtz: refactor xtz to its own module (241f580)

2.20.0-rc.30 (2022-07-07)

Bug Fixes

  • sdk-core: make hex representation consistent (ba493e9)

Features

  • account-lib: hbar token transfer builder and serialization (0bc7287)
  • account-lib: token associate transaction builder for hedera accounts (417c720)

2.20.0-rc.29 (2022-07-05)

Bug Fixes

  • account-lib: upgrading celo contractkit to v2 (fe267aa)

2.20.0-rc.28 (2022-07-01)

Bug Fixes

  • sdk-core: fix ecdsa signing timeouts (8ecd859)

Features

  • sdk-coin-avaxp: add into accountLib umbrella (9f0914d)

2.20.0-rc.27 (2022-06-30)

Bug Fixes

  • account-lib: fix ecdsa tests timeout issues (12c86b2)

2.20.0-rc.26 (2022-06-30)

Bug Fixes

  • use correct address encoding when decoding polkadot txn (99d4bdc)

2.20.0-rc.25 (2022-06-29)

Features

  • account-lib: add support for ecdsa sigining and verification tss (8600501)
  • account-lib: sol create ata for diff owner (6b5e3a8)

2.20.0-rc.24 (2022-06-29)

Features

  • account-lib: add support for ecdsa sigining and verification tss (8600501)
  • account-lib: sol create ata for diff owner (6b5e3a8)

2.20.0-rc.23 (2022-06-27)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.22 (2022-06-23)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.21 (2022-06-22)

Bug Fixes

  • account-lib: fix chaincode to use correct modulo (33db7a3)
  • add dependency check to fix current and future dependency resolutions (3074335)

2.20.0-rc.20 (2022-06-21)

Bug Fixes

  • account-lib: change etheremjs-utils-old alias (a692047)

2.20.0-rc.19 (2022-06-16)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.18 (2022-06-14)

Features

  • tss - support user supplied entropy during signing (29a0bea)

2.20.0-rc.17 (2022-06-14)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.16 (2022-06-13)

Bug Fixes

  • allow string and large values for csp transferId (922915d)

2.20.0-rc.15 (2022-06-10)

Features

  • account-lib: add support for chaincode for key derivation in ecdsa (e8c9faf)
  • account-lib: add support for point multiplication in secp256k1 curve (e8e00ab)

2.20.0-rc.14 (2022-06-07)

Bug Fixes

  • sdk-core: add paillier bigint dep (a8cd71e)
  • statics: fix tsol token decimal (3b66d7e)

2.20.0-rc.13 (2022-06-07)

Features

  • account-lib: add support for ecdsa keyshare generation tss (c71bc34)
  • implement polygon util method, core skeleton (562855a)

2.20.0-rc.12 (2022-06-02)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.11 (2022-06-02)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.10 (2022-06-01)

Features

  • account-lib: add tests to verify self stacking STX tx builder (88c6dd1)
  • account-lib: fix is valid account id (b14f7d1)

2.20.0-rc.9 (2022-05-23)

Features

  • account-lib: add support for secp256k1 curve (7467f8c)

2.20.0-rc.8 (2022-05-19)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.7 (2022-05-17)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.6 (2022-05-16)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.5 (2022-05-13)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.4 (2022-05-13)

Note: Version bump only for package @bitgo/account-lib

2.20.0-rc.3 (2022-05-12)

Features

  • account-lib: added missing exports for Near staking related builders (4e4ea86)

2.20.0-rc.1 (2022-05-06)

Features

  • bitgo: add verify transaction in core for Near (1fc0f7b)

2.19.0-rc.33 (2022-05-04)

Note: Version bump only for package @bitgo/account-lib

2.19.0-rc.31 (2022-04-19)

Features

  • account-lib: support creating TSS keyshares with seed (6716720)

2.19.0-rc.30 (2022-04-19)

Note: Version bump only for package @bitgo/account-lib

2.19.0-rc.28 (2022-04-12)

Note: Version bump only for package @bitgo/account-lib

2.19.0-rc.27 (2022-04-11)

Bug Fixes

  • force secure urls unless disabled (3b9edd5)
  • update dot to address breaking changes in 7.15.1 (a949618)

2.19.0-rc.26 (2022-04-08)

Features

  • account-lib: change Near broadcast format from base58 to base64 (8346017)
  • account-lib: token transfer intent STLX-13307 (7476e30)
  • support tss hd signing (3479e84)

2.19.0-rc.25 (2022-04-06)

Features

  • account-lib: token transfer intent STLX-13307 (7476e30)
  • support tss hd signing (3479e84)

2.19.0-rc.23 (2022-04-05)

Features