UNPKG

@radixdlt/radix-engine-toolkit

Version:

A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger

18 lines (17 loc) 329 B
export interface BuildInformation { version: string; scryptoDependency: ScryptoDependencyInformation; } export type ScryptoDependencyInformation = { kind: "Version"; value: string; } | { kind: "Tag"; value: string; } | { kind: "Branch"; value: string; } | { kind: "Rev"; value: string; };