Package detail

@bitgo/sdk-coin-vet

BitGo987MIT1.6.1

BitGo SDK coin library for VeChain

readme

BitGo sdk-coin-vet

SDK coins provide a modular approach to a monolithic architecture. This and all BitGoJS SDK coins allow developers to use only the coins needed for a given project.

Installation

All coins are loaded traditionally through the bitgo package. If you are using coins individually, you will be accessing the coin via the @bitgo/sdk-api package.

In your project install both @bitgo/sdk-api and @bitgo/sdk-coin-vet.

npm i @bitgo/sdk-api @bitgo/sdk-coin-vet

Next, you will be able to initialize an instance of "bitgo" through @bitgo/sdk-api instead of bitgo.

import { BitGoAPI } from '@bitgo/sdk-api';
import { Vet } from '@bitgo/sdk-coin-vet';

const sdk = new BitGoAPI();

sdk.register('vet', Vet.createInstance);

Development

Most of the coin implementations are derived from @bitgo/sdk-core, @bitgo/statics, and coin specific packages. These implementations are used to interact with the BitGo API and BitGo platform services.

You will notice that the basic version of common class extensions have been provided to you and must be resolved before the package build will succeed. Upon initiation of a given SDK coin, you will need to verify that your coin has been included in the root tsconfig.packages.json and that the linting, formatting, and testing succeeds when run both within the coin and from the root of BitGoJS.

changelog

Change Log

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

1.6.1 (2025-06-25)

Note: Version bump only for package @bitgo/sdk-coin-vet

1.6.0 (2025-06-24)

Features

  • add vechain token standard support (f81cf23)

1.5.0 (2025-06-18)

Features

  • sdk-coin-vet: implement isValidBlockId for vet (2a7e6e7)

1.4.0 (2025-06-10)

Features

  • sdk-coin-vet: add transaction builder logic for vechain (96c089f)

1.3.0 (2025-06-05)

Features

  • root: support node 22 (c4ad6af)
  • sdk-coin-vet: add vechain keyPair (3231af0)
  • sdk-coin-vet: address and wallet creation (7964875)

1.2.0 (2025-06-02)

Features

  • rename audit function naming and signature (1a885ab)

1.1.1 (2025-05-28)

Note: Version bump only for package @bitgo/sdk-coin-vet

1.1.0 (2025-05-22)

Features

  • sdk-coin-vet: add sdk skeleton for vet (8ccd9a4)