import { HexEncodedString } from '../utils'; /** * An Alias ID represented as hex-encoded string. */ export type AliasId = HexEncodedString; /** * An NFT ID represented as hex-encoded string. */ export type NftId = HexEncodedString; /** * A Block ID represented as hex-encoded string. */ export type BlockId = HexEncodedString; /** * A Token ID represented as hex-encoded string. */ export type TokenId = HexEncodedString; /** * A Foundry ID represented as hex-encoded string. */ export type FoundryId = HexEncodedString;