@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
12 lines (11 loc) • 386 B
TypeScript
import { Expr } from "@taquito/michel-codec";
export type GlobalConstantHash = string;
export interface GlobalConstantsProvider {
/**
*
* @description Retrieve the Michelson value of a global constant based on its hash
*
* @param hash a string representing the global constant hash
*/
getGlobalConstantByHash(hash: GlobalConstantHash): Promise<Expr>;
}