import { ProtocolMagic } from "./types"; export declare const MilkomedaMetadataLabels: { readonly MAGIC: 87; readonly ADDRESS: 88; }; export declare type TransactionMetadata = { label: string; data: string; conversionModel?: number; }; /** * Note: this returns a JSON object that needs to be converted to CBOR * However, the conversion mode used for JSON -> CBOR conversion is important * Notably, because Ethereum addresses start with 0x * The NoConversion mode needs to be used * https://github.com/Emurgo/cardano-serialization-lib/blob/e0b33c6dc2f15b9383627924c0f12b850864d37b/doc/getting-started/metadata.md#json-conversion */ export declare function generateMilkomedaMetadata(addressHex: string, milkomedaMagic: ProtocolMagic): Array; //# sourceMappingURL=metadata.d.ts.map