@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) • 429 B
TypeScript
export type StaticValidationResult = {
kind: "Valid";
} | {
kind: "Invalid";
error: string;
};
export declare enum SerializationMode {
Programmatic = "Programmatic",
Model = "Model",
Natural = "Natural"
}
export declare enum ManifestSborStringRepresentation {
ManifestString = "ManifestString",
ProgrammaticJson = "ProgrammaticJson",
ModelJson = "ModelJson",
NaturalJson = "NaturalJson"
}