@meshsdk/core-cst 1.6.2 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2,18 +2,16 @@ import * as _cardano_sdk_core from '@cardano-sdk/core';
2
2
  import { Cardano, Serialization } from '@cardano-sdk/core';
3
3
  export { _cardano_sdk_core as CardanoSDK };
4
4
  export { Cardano, Serialization } from '@cardano-sdk/core';
5
- import strica from '@stricahq/bip32ed25519';
6
5
  import * as _cardano_sdk_util from '@cardano-sdk/util';
7
6
  import { OpaqueString } from '@cardano-sdk/util';
8
7
  export { _cardano_sdk_util as CardanoSDKUtil };
9
8
  import * as Crypto from '@cardano-sdk/crypto';
10
9
  export { Crypto };
10
+ import strica from '@stricahq/bip32ed25519';
11
11
  import { DataSignature, Data, NativeScript as NativeScript$1, PlutusScript, IMeshTxSerializer, DeserializedAddress, BuilderData, IDeserializer, IResolver, MeshTxBuilderBody, Protocol, UTxO, Asset, LanguageVersion } from '@meshsdk/common';
12
-
13
- declare class PrivateKey extends strica.PrivateKey {
14
- constructor(privKey: Buffer, extended?: Boolean);
15
- }
16
- declare const PublicKey: typeof strica.PublicKey;
12
+ import { Buffer as Buffer$1 } from 'buffer';
13
+ import strica$1 from '@stricahq/cbors';
14
+ import * as _cardano_sdk_core_dist_cjs_Cardano from '@cardano-sdk/core/dist/cjs/Cardano';
17
15
 
18
16
  declare const Slot: (value: number) => Cardano.Slot;
19
17
  type Slot = Cardano.Slot;
@@ -141,8 +139,8 @@ declare const Ed25519PublicKey: typeof Crypto.Ed25519PublicKey;
141
139
  type Ed25519PublicKey = Crypto.Ed25519PublicKey;
142
140
  declare const Ed25519Signature: typeof Crypto.Ed25519Signature;
143
141
  type Ed25519Signature = Crypto.Ed25519Signature;
144
- declare const Bip32PrivateKey: typeof Crypto.Bip32PrivateKey;
145
- type Bip32PrivateKey = Crypto.Bip32PrivateKey;
142
+ declare const Bip32PrivateKey$1: typeof Crypto.Bip32PrivateKey;
143
+ type Bip32PrivateKey$1 = Crypto.Bip32PrivateKey;
146
144
  declare const Bip32PrivateKeyHex: (key: string) => Crypto.Bip32PrivateKeyHex;
147
145
  type Bip32PrivateKeyHex = Crypto.Bip32PrivateKeyHex;
148
146
  declare const PlutusLanguageVersion: typeof Cardano.PlutusLanguageVersion;
@@ -207,14 +205,50 @@ declare const VrfVkBech32: {
207
205
  };
208
206
  type ScriptPubkey = Serialization.ScriptPubkey;
209
207
  declare const ScriptPubkey: typeof Serialization.ScriptPubkey;
208
+ type DRepID = Cardano.DRepID;
209
+ declare const DRepID: {
210
+ (value: string): Cardano.DRepID;
211
+ isValid(value: string): boolean;
212
+ canSign(value: string): boolean;
213
+ };
210
214
 
211
215
  type Signer = {
212
216
  address: Address;
213
217
  key: PrivateKey;
214
218
  };
215
219
 
216
- declare const signData: (data: string, privateKey: PrivateKey) => DataSignature;
217
- declare const checkSignature: (data: string, { key, signature }: DataSignature) => any;
220
+ declare const checkSignature: (data: string, { key, signature }: DataSignature) => boolean;
221
+
222
+ declare class CoseSign1 {
223
+ private protectedMap;
224
+ private unProtectedMap;
225
+ private payload;
226
+ private signature;
227
+ constructor(payload: {
228
+ protectedMap: Map<any, any>;
229
+ unProtectedMap: Map<any, any>;
230
+ payload: Buffer$1 | null;
231
+ signature?: Buffer$1;
232
+ });
233
+ static fromCbor(cbor: string): CoseSign1;
234
+ createSigStructure(externalAad?: Buffer$1): Buffer$1;
235
+ buildMessage(signature: Buffer$1): Buffer$1;
236
+ verifySignature({ externalAad, publicKeyBuffer, }?: {
237
+ externalAad?: Buffer$1;
238
+ publicKeyBuffer?: Buffer$1;
239
+ }): boolean;
240
+ hashPayload(): void;
241
+ getAddress(): Buffer$1;
242
+ getPublicKey(): Buffer$1;
243
+ getSignature(): Buffer$1 | undefined;
244
+ getPayload(): Buffer$1 | null;
245
+ }
246
+ declare const getPublicKeyFromCoseKey: (cbor: string) => Buffer$1;
247
+ declare const getCoseKeyFromPublicKey: (cbor: string) => Buffer$1;
248
+
249
+ declare const generateNonce: (label?: string, length?: number) => string;
250
+
251
+ declare const signData: (data: string, signer: Signer) => DataSignature;
218
252
 
219
253
  declare const resolveDataHash: (data: Data) => string;
220
254
  declare const resolveNativeScriptAddress: (script: NativeScript$1, networkId?: number) => Cardano.PaymentAddress | Cardano.RewardAccount;
@@ -238,6 +272,7 @@ declare class CardanoSDKSerializer implements IMeshTxSerializer {
238
272
  private datumsProvided;
239
273
  private usedLanguages;
240
274
  constructor();
275
+ serializeRewardAddress(stakeKeyHash: string, isScriptHash?: boolean, network_id?: 0 | 1): string;
241
276
  serializePoolId(hash: string): string;
242
277
  serializeAddress(address: DeserializedAddress, networkId?: 0 | 1): string;
243
278
  serializeData(data: BuilderData): string;
@@ -263,15 +298,31 @@ declare class CardanoSDKSerializer implements IMeshTxSerializer {
263
298
  private createDummyTx;
264
299
  }
265
300
 
301
+ declare class PrivateKey extends strica.PrivateKey {
302
+ constructor(privKey: Buffer, extended?: Boolean);
303
+ }
304
+
305
+ declare const PublicKey: typeof strica.PublicKey;
306
+ declare const Bip32PrivateKey: typeof strica.Bip32PrivateKey;
307
+ declare const Bip32PublicKey: typeof strica.Bip32PublicKey;
308
+
309
+ declare const Encoder: {
310
+ encode: (input: any, options?: {
311
+ collapseBigNumber: Boolean;
312
+ }) => Buffer;
313
+ };
314
+ declare const Decoder: typeof strica$1.Decoder;
315
+
266
316
  declare const buildBaseAddress: (networkId: number, paymentKeyHash: Hash28ByteBase16, stakeKeyHash: Hash28ByteBase16) => BaseAddress;
267
317
  declare const buildEnterpriseAddress: (networkId: number, paymentKeyHash: Hash28ByteBase16) => EnterpriseAddress;
268
- declare const buildBip32PrivateKey: (entropy: string, password?: string) => Bip32PrivateKey;
318
+ declare const buildBip32PrivateKey: (entropy: string, password?: string) => Bip32PrivateKey$1;
269
319
  declare const buildRewardAddress: (networkId: number, stakeKeyHash: Hash28ByteBase16) => RewardAddress;
270
320
  declare const buildKeys: (entropy: string | [string, string], accountIndex: number, keyIndex?: number) => {
271
321
  paymentKey: PrivateKey;
272
322
  stakeKey: PrivateKey;
273
323
  };
274
324
  declare const buildScriptPubkey: (keyHash: Ed25519KeyHash) => NativeScript;
325
+ declare const buildDRepID: (dRepKey: Ed25519PublicKeyHex, networkId?: NetworkId, addressType?: AddressType) => _cardano_sdk_core_dist_cjs_Cardano.DRepID;
275
326
 
276
327
  declare const toAddress: (bech32: string) => Address;
277
328
  declare const toBaseAddress: (bech32: string) => BaseAddress | undefined;
@@ -308,4 +359,4 @@ declare function negatives(v: Value): Value;
308
359
  declare function assetTypes(v: Value): number;
309
360
  declare function empty(v: Value): boolean;
310
361
 
311
- export { Address, AddressType, AssetFingerprint, AssetId, AssetName, BaseAddress, Bip32PrivateKey, Bip32PrivateKeyHex, CardanoSDKSerializer, CborSet, CborWriter, Certificate, CertificateType, ConstrPlutusData, CostModel, type CostModels, Costmdls, Credential, type CredentialCore, CredentialType, Datum, DatumHash, DatumKind, Ed25519KeyHash, Ed25519KeyHashHex, Ed25519PrivateExtendedKeyHex, Ed25519PrivateNormalKeyHex, Ed25519PublicKey, Ed25519PublicKeyHex, Ed25519Signature, Ed25519SignatureHex, EnterpriseAddress, ExUnits, Hash, Hash28ByteBase16, Hash32ByteBase16, NativeScript, NetworkId, PaymentAddress, PlutusData, PlutusLanguageVersion, PlutusList, PlutusMap, PlutusV1Script, PlutusV2Script, PlutusV3Script, PolicyId, PoolId, PrivateKey, PublicKey, Redeemer, RedeemerPurpose, RedeemerTag, Redeemers, RequireAllOf, RequireAnyOf, RequireNOf, RequireSignature, RequireTimeAfter, RequireTimeBefore, RewardAccount, RewardAddress, Script, ScriptHash, ScriptPubkey, type Signatures, type Signer, Slot, StakeDelegation, type StakeDelegationCertificate, StakeRegistration, type TokenMap, Transaction, TransactionBody, TransactionId, TransactionInput, type TransactionInputSet, TransactionOutput, TransactionUnspentOutput, type TransactionWitnessPlutusData, TransactionWitnessSet, Value, VkeyWitness, VrfVkBech32, type Witness, addressToBech32, assetTypes, buildBaseAddress, buildBip32PrivateKey, buildEnterpriseAddress, buildKeys, buildRewardAddress, buildScriptPubkey, checkSignature, deserializeAddress, deserializeDataHash, deserializeEd25519KeyHash, deserializeNativeScript, deserializePlutusData, deserializePlutusScript, deserializeScriptHash, deserializeScriptRef, deserializeTx, deserializeTxHash, deserializeTxUnspentOutput, deserializeValue, empty, fromNativeScript, fromScriptRef, fromTxUnspentOutput, fromValue, mergeValue, negateValue, negatives, resolveDataHash, resolveNativeScriptAddress, resolveNativeScriptHash, resolvePaymentKeyHash, resolvePlutusScriptAddress, resolvePlutusScriptHash, resolvePoolId, resolvePrivateKey, resolveRewardAddress, resolveScriptRef, resolveStakeKeyHash, resolveTxHash, signData, subValue, toAddress, toBaseAddress, toEnterpriseAddress, toNativeScript, toPlutusData, toRewardAddress, toScriptRef, toTxUnspentOutput, toValue };
362
+ export { Address, AddressType, AssetFingerprint, AssetId, AssetName, BaseAddress, Bip32PrivateKey$1 as Bip32PrivateKey, Bip32PrivateKeyHex, CardanoSDKSerializer, CborSet, CborWriter, Certificate, CertificateType, ConstrPlutusData, CoseSign1, CostModel, type CostModels, Costmdls, Credential, type CredentialCore, CredentialType, DRepID, Datum, DatumHash, DatumKind, Ed25519KeyHash, Ed25519KeyHashHex, Ed25519PrivateExtendedKeyHex, Ed25519PrivateNormalKeyHex, Ed25519PublicKey, Ed25519PublicKeyHex, Ed25519Signature, Ed25519SignatureHex, EnterpriseAddress, ExUnits, Hash, Hash28ByteBase16, Hash32ByteBase16, NativeScript, NetworkId, PaymentAddress, PlutusData, PlutusLanguageVersion, PlutusList, PlutusMap, PlutusV1Script, PlutusV2Script, PlutusV3Script, PolicyId, PoolId, Redeemer, RedeemerPurpose, RedeemerTag, Redeemers, RequireAllOf, RequireAnyOf, RequireNOf, RequireSignature, RequireTimeAfter, RequireTimeBefore, RewardAccount, RewardAddress, Script, ScriptHash, ScriptPubkey, type Signatures, type Signer, Slot, StakeDelegation, type StakeDelegationCertificate, StakeRegistration, Bip32PrivateKey as StricaBip32PrivateKey, Bip32PublicKey as StricaBip32PublicKey, Decoder as StricaDecoder, Encoder as StricaEncoder, PrivateKey as StricaPrivateKey, PublicKey as StricaPublicKey, type TokenMap, Transaction, TransactionBody, TransactionId, TransactionInput, type TransactionInputSet, TransactionOutput, TransactionUnspentOutput, type TransactionWitnessPlutusData, TransactionWitnessSet, Value, VkeyWitness, VrfVkBech32, type Witness, addressToBech32, assetTypes, buildBaseAddress, buildBip32PrivateKey, buildDRepID, buildEnterpriseAddress, buildKeys, buildRewardAddress, buildScriptPubkey, checkSignature, deserializeAddress, deserializeDataHash, deserializeEd25519KeyHash, deserializeNativeScript, deserializePlutusData, deserializePlutusScript, deserializeScriptHash, deserializeScriptRef, deserializeTx, deserializeTxHash, deserializeTxUnspentOutput, deserializeValue, empty, fromNativeScript, fromScriptRef, fromTxUnspentOutput, fromValue, generateNonce, getCoseKeyFromPublicKey, getPublicKeyFromCoseKey, mergeValue, negateValue, negatives, resolveDataHash, resolveNativeScriptAddress, resolveNativeScriptHash, resolvePaymentKeyHash, resolvePlutusScriptAddress, resolvePlutusScriptHash, resolvePoolId, resolvePrivateKey, resolveRewardAddress, resolveScriptRef, resolveStakeKeyHash, resolveTxHash, signData, subValue, toAddress, toBaseAddress, toEnterpriseAddress, toNativeScript, toPlutusData, toRewardAddress, toScriptRef, toTxUnspentOutput, toValue };
package/dist/index.d.ts CHANGED
@@ -2,18 +2,16 @@ import * as _cardano_sdk_core from '@cardano-sdk/core';
2
2
  import { Cardano, Serialization } from '@cardano-sdk/core';
3
3
  export { _cardano_sdk_core as CardanoSDK };
4
4
  export { Cardano, Serialization } from '@cardano-sdk/core';
5
- import strica from '@stricahq/bip32ed25519';
6
5
  import * as _cardano_sdk_util from '@cardano-sdk/util';
7
6
  import { OpaqueString } from '@cardano-sdk/util';
8
7
  export { _cardano_sdk_util as CardanoSDKUtil };
9
8
  import * as Crypto from '@cardano-sdk/crypto';
10
9
  export { Crypto };
10
+ import strica from '@stricahq/bip32ed25519';
11
11
  import { DataSignature, Data, NativeScript as NativeScript$1, PlutusScript, IMeshTxSerializer, DeserializedAddress, BuilderData, IDeserializer, IResolver, MeshTxBuilderBody, Protocol, UTxO, Asset, LanguageVersion } from '@meshsdk/common';
12
-
13
- declare class PrivateKey extends strica.PrivateKey {
14
- constructor(privKey: Buffer, extended?: Boolean);
15
- }
16
- declare const PublicKey: typeof strica.PublicKey;
12
+ import { Buffer as Buffer$1 } from 'buffer';
13
+ import strica$1 from '@stricahq/cbors';
14
+ import * as _cardano_sdk_core_dist_cjs_Cardano from '@cardano-sdk/core/dist/cjs/Cardano';
17
15
 
18
16
  declare const Slot: (value: number) => Cardano.Slot;
19
17
  type Slot = Cardano.Slot;
@@ -141,8 +139,8 @@ declare const Ed25519PublicKey: typeof Crypto.Ed25519PublicKey;
141
139
  type Ed25519PublicKey = Crypto.Ed25519PublicKey;
142
140
  declare const Ed25519Signature: typeof Crypto.Ed25519Signature;
143
141
  type Ed25519Signature = Crypto.Ed25519Signature;
144
- declare const Bip32PrivateKey: typeof Crypto.Bip32PrivateKey;
145
- type Bip32PrivateKey = Crypto.Bip32PrivateKey;
142
+ declare const Bip32PrivateKey$1: typeof Crypto.Bip32PrivateKey;
143
+ type Bip32PrivateKey$1 = Crypto.Bip32PrivateKey;
146
144
  declare const Bip32PrivateKeyHex: (key: string) => Crypto.Bip32PrivateKeyHex;
147
145
  type Bip32PrivateKeyHex = Crypto.Bip32PrivateKeyHex;
148
146
  declare const PlutusLanguageVersion: typeof Cardano.PlutusLanguageVersion;
@@ -207,14 +205,50 @@ declare const VrfVkBech32: {
207
205
  };
208
206
  type ScriptPubkey = Serialization.ScriptPubkey;
209
207
  declare const ScriptPubkey: typeof Serialization.ScriptPubkey;
208
+ type DRepID = Cardano.DRepID;
209
+ declare const DRepID: {
210
+ (value: string): Cardano.DRepID;
211
+ isValid(value: string): boolean;
212
+ canSign(value: string): boolean;
213
+ };
210
214
 
211
215
  type Signer = {
212
216
  address: Address;
213
217
  key: PrivateKey;
214
218
  };
215
219
 
216
- declare const signData: (data: string, privateKey: PrivateKey) => DataSignature;
217
- declare const checkSignature: (data: string, { key, signature }: DataSignature) => any;
220
+ declare const checkSignature: (data: string, { key, signature }: DataSignature) => boolean;
221
+
222
+ declare class CoseSign1 {
223
+ private protectedMap;
224
+ private unProtectedMap;
225
+ private payload;
226
+ private signature;
227
+ constructor(payload: {
228
+ protectedMap: Map<any, any>;
229
+ unProtectedMap: Map<any, any>;
230
+ payload: Buffer$1 | null;
231
+ signature?: Buffer$1;
232
+ });
233
+ static fromCbor(cbor: string): CoseSign1;
234
+ createSigStructure(externalAad?: Buffer$1): Buffer$1;
235
+ buildMessage(signature: Buffer$1): Buffer$1;
236
+ verifySignature({ externalAad, publicKeyBuffer, }?: {
237
+ externalAad?: Buffer$1;
238
+ publicKeyBuffer?: Buffer$1;
239
+ }): boolean;
240
+ hashPayload(): void;
241
+ getAddress(): Buffer$1;
242
+ getPublicKey(): Buffer$1;
243
+ getSignature(): Buffer$1 | undefined;
244
+ getPayload(): Buffer$1 | null;
245
+ }
246
+ declare const getPublicKeyFromCoseKey: (cbor: string) => Buffer$1;
247
+ declare const getCoseKeyFromPublicKey: (cbor: string) => Buffer$1;
248
+
249
+ declare const generateNonce: (label?: string, length?: number) => string;
250
+
251
+ declare const signData: (data: string, signer: Signer) => DataSignature;
218
252
 
219
253
  declare const resolveDataHash: (data: Data) => string;
220
254
  declare const resolveNativeScriptAddress: (script: NativeScript$1, networkId?: number) => Cardano.PaymentAddress | Cardano.RewardAccount;
@@ -238,6 +272,7 @@ declare class CardanoSDKSerializer implements IMeshTxSerializer {
238
272
  private datumsProvided;
239
273
  private usedLanguages;
240
274
  constructor();
275
+ serializeRewardAddress(stakeKeyHash: string, isScriptHash?: boolean, network_id?: 0 | 1): string;
241
276
  serializePoolId(hash: string): string;
242
277
  serializeAddress(address: DeserializedAddress, networkId?: 0 | 1): string;
243
278
  serializeData(data: BuilderData): string;
@@ -263,15 +298,31 @@ declare class CardanoSDKSerializer implements IMeshTxSerializer {
263
298
  private createDummyTx;
264
299
  }
265
300
 
301
+ declare class PrivateKey extends strica.PrivateKey {
302
+ constructor(privKey: Buffer, extended?: Boolean);
303
+ }
304
+
305
+ declare const PublicKey: typeof strica.PublicKey;
306
+ declare const Bip32PrivateKey: typeof strica.Bip32PrivateKey;
307
+ declare const Bip32PublicKey: typeof strica.Bip32PublicKey;
308
+
309
+ declare const Encoder: {
310
+ encode: (input: any, options?: {
311
+ collapseBigNumber: Boolean;
312
+ }) => Buffer;
313
+ };
314
+ declare const Decoder: typeof strica$1.Decoder;
315
+
266
316
  declare const buildBaseAddress: (networkId: number, paymentKeyHash: Hash28ByteBase16, stakeKeyHash: Hash28ByteBase16) => BaseAddress;
267
317
  declare const buildEnterpriseAddress: (networkId: number, paymentKeyHash: Hash28ByteBase16) => EnterpriseAddress;
268
- declare const buildBip32PrivateKey: (entropy: string, password?: string) => Bip32PrivateKey;
318
+ declare const buildBip32PrivateKey: (entropy: string, password?: string) => Bip32PrivateKey$1;
269
319
  declare const buildRewardAddress: (networkId: number, stakeKeyHash: Hash28ByteBase16) => RewardAddress;
270
320
  declare const buildKeys: (entropy: string | [string, string], accountIndex: number, keyIndex?: number) => {
271
321
  paymentKey: PrivateKey;
272
322
  stakeKey: PrivateKey;
273
323
  };
274
324
  declare const buildScriptPubkey: (keyHash: Ed25519KeyHash) => NativeScript;
325
+ declare const buildDRepID: (dRepKey: Ed25519PublicKeyHex, networkId?: NetworkId, addressType?: AddressType) => _cardano_sdk_core_dist_cjs_Cardano.DRepID;
275
326
 
276
327
  declare const toAddress: (bech32: string) => Address;
277
328
  declare const toBaseAddress: (bech32: string) => BaseAddress | undefined;
@@ -308,4 +359,4 @@ declare function negatives(v: Value): Value;
308
359
  declare function assetTypes(v: Value): number;
309
360
  declare function empty(v: Value): boolean;
310
361
 
311
- export { Address, AddressType, AssetFingerprint, AssetId, AssetName, BaseAddress, Bip32PrivateKey, Bip32PrivateKeyHex, CardanoSDKSerializer, CborSet, CborWriter, Certificate, CertificateType, ConstrPlutusData, CostModel, type CostModels, Costmdls, Credential, type CredentialCore, CredentialType, Datum, DatumHash, DatumKind, Ed25519KeyHash, Ed25519KeyHashHex, Ed25519PrivateExtendedKeyHex, Ed25519PrivateNormalKeyHex, Ed25519PublicKey, Ed25519PublicKeyHex, Ed25519Signature, Ed25519SignatureHex, EnterpriseAddress, ExUnits, Hash, Hash28ByteBase16, Hash32ByteBase16, NativeScript, NetworkId, PaymentAddress, PlutusData, PlutusLanguageVersion, PlutusList, PlutusMap, PlutusV1Script, PlutusV2Script, PlutusV3Script, PolicyId, PoolId, PrivateKey, PublicKey, Redeemer, RedeemerPurpose, RedeemerTag, Redeemers, RequireAllOf, RequireAnyOf, RequireNOf, RequireSignature, RequireTimeAfter, RequireTimeBefore, RewardAccount, RewardAddress, Script, ScriptHash, ScriptPubkey, type Signatures, type Signer, Slot, StakeDelegation, type StakeDelegationCertificate, StakeRegistration, type TokenMap, Transaction, TransactionBody, TransactionId, TransactionInput, type TransactionInputSet, TransactionOutput, TransactionUnspentOutput, type TransactionWitnessPlutusData, TransactionWitnessSet, Value, VkeyWitness, VrfVkBech32, type Witness, addressToBech32, assetTypes, buildBaseAddress, buildBip32PrivateKey, buildEnterpriseAddress, buildKeys, buildRewardAddress, buildScriptPubkey, checkSignature, deserializeAddress, deserializeDataHash, deserializeEd25519KeyHash, deserializeNativeScript, deserializePlutusData, deserializePlutusScript, deserializeScriptHash, deserializeScriptRef, deserializeTx, deserializeTxHash, deserializeTxUnspentOutput, deserializeValue, empty, fromNativeScript, fromScriptRef, fromTxUnspentOutput, fromValue, mergeValue, negateValue, negatives, resolveDataHash, resolveNativeScriptAddress, resolveNativeScriptHash, resolvePaymentKeyHash, resolvePlutusScriptAddress, resolvePlutusScriptHash, resolvePoolId, resolvePrivateKey, resolveRewardAddress, resolveScriptRef, resolveStakeKeyHash, resolveTxHash, signData, subValue, toAddress, toBaseAddress, toEnterpriseAddress, toNativeScript, toPlutusData, toRewardAddress, toScriptRef, toTxUnspentOutput, toValue };
362
+ export { Address, AddressType, AssetFingerprint, AssetId, AssetName, BaseAddress, Bip32PrivateKey$1 as Bip32PrivateKey, Bip32PrivateKeyHex, CardanoSDKSerializer, CborSet, CborWriter, Certificate, CertificateType, ConstrPlutusData, CoseSign1, CostModel, type CostModels, Costmdls, Credential, type CredentialCore, CredentialType, DRepID, Datum, DatumHash, DatumKind, Ed25519KeyHash, Ed25519KeyHashHex, Ed25519PrivateExtendedKeyHex, Ed25519PrivateNormalKeyHex, Ed25519PublicKey, Ed25519PublicKeyHex, Ed25519Signature, Ed25519SignatureHex, EnterpriseAddress, ExUnits, Hash, Hash28ByteBase16, Hash32ByteBase16, NativeScript, NetworkId, PaymentAddress, PlutusData, PlutusLanguageVersion, PlutusList, PlutusMap, PlutusV1Script, PlutusV2Script, PlutusV3Script, PolicyId, PoolId, Redeemer, RedeemerPurpose, RedeemerTag, Redeemers, RequireAllOf, RequireAnyOf, RequireNOf, RequireSignature, RequireTimeAfter, RequireTimeBefore, RewardAccount, RewardAddress, Script, ScriptHash, ScriptPubkey, type Signatures, type Signer, Slot, StakeDelegation, type StakeDelegationCertificate, StakeRegistration, Bip32PrivateKey as StricaBip32PrivateKey, Bip32PublicKey as StricaBip32PublicKey, Decoder as StricaDecoder, Encoder as StricaEncoder, PrivateKey as StricaPrivateKey, PublicKey as StricaPublicKey, type TokenMap, Transaction, TransactionBody, TransactionId, TransactionInput, type TransactionInputSet, TransactionOutput, TransactionUnspentOutput, type TransactionWitnessPlutusData, TransactionWitnessSet, Value, VkeyWitness, VrfVkBech32, type Witness, addressToBech32, assetTypes, buildBaseAddress, buildBip32PrivateKey, buildDRepID, buildEnterpriseAddress, buildKeys, buildRewardAddress, buildScriptPubkey, checkSignature, deserializeAddress, deserializeDataHash, deserializeEd25519KeyHash, deserializeNativeScript, deserializePlutusData, deserializePlutusScript, deserializeScriptHash, deserializeScriptRef, deserializeTx, deserializeTxHash, deserializeTxUnspentOutput, deserializeValue, empty, fromNativeScript, fromScriptRef, fromTxUnspentOutput, fromValue, generateNonce, getCoseKeyFromPublicKey, getPublicKeyFromCoseKey, mergeValue, negateValue, negatives, resolveDataHash, resolveNativeScriptAddress, resolveNativeScriptHash, resolvePaymentKeyHash, resolvePlutusScriptAddress, resolvePlutusScriptHash, resolvePoolId, resolvePrivateKey, resolveRewardAddress, resolveScriptRef, resolveStakeKeyHash, resolveTxHash, signData, subValue, toAddress, toBaseAddress, toEnterpriseAddress, toNativeScript, toPlutusData, toRewardAddress, toScriptRef, toTxUnspentOutput, toValue };