@biglup/cometa 1.0.7002 → 1.0.7004
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/cjs/index.d.mts +94 -1
- package/dist/cjs/index.d.ts +94 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.d.mts +94 -1
- package/dist/esm/index.d.ts +94 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/iife/index.global.js +19 -0
- package/dist/iife/index.global.js.map +1 -0
- package/package.json +5 -2
package/dist/cjs/index.d.mts
CHANGED
|
@@ -7358,4 +7358,97 @@ declare class SingleAddressWallet implements Wallet {
|
|
|
7358
7358
|
private getRewardAddress;
|
|
7359
7359
|
}
|
|
7360
7360
|
|
|
7361
|
-
|
|
7361
|
+
/**
|
|
7362
|
+
* This class acts as an adapter, consuming the raw, CBOR-based API of a CIP-30 wallet
|
|
7363
|
+
* and exposing methods that return deserialized, object types from Cometa.
|
|
7364
|
+
*/
|
|
7365
|
+
declare class BrowserExtensionWallet implements Wallet {
|
|
7366
|
+
private cip30Wallet;
|
|
7367
|
+
private protocolParams;
|
|
7368
|
+
private provider;
|
|
7369
|
+
/**
|
|
7370
|
+
* Constructs a new instance of the BrowserExtensionWallet.
|
|
7371
|
+
* @param {Cip30Wallet} cip30Wallet - The raw CIP-30 wallet API provided by the browser extension.
|
|
7372
|
+
* @param {Provider} provider - The provider used to fetch additional data.
|
|
7373
|
+
*/
|
|
7374
|
+
constructor(cip30Wallet: Cip30Wallet, provider: Provider);
|
|
7375
|
+
/**
|
|
7376
|
+
* Returns the wallet's current network ID.
|
|
7377
|
+
* @returns {Promise<NetworkId>} A promise that resolves to the network ID (0 for Testnet, 1 for Mainnet).
|
|
7378
|
+
*/
|
|
7379
|
+
getNetworkId(): Promise<NetworkId>;
|
|
7380
|
+
/**
|
|
7381
|
+
* Fetches the wallet's UTxOs and deserializes them from CBOR into an array of `TxOut` objects.
|
|
7382
|
+
* @returns {Promise<UTxO[]>} A promise that resolves to an array of the wallet's UTxOs.
|
|
7383
|
+
*/
|
|
7384
|
+
getUnspentOutputs(): Promise<UTxO[]>;
|
|
7385
|
+
/**
|
|
7386
|
+
* Fetches and deserializes the total balance of all assets controlled by the wallet.
|
|
7387
|
+
* @returns {Promise<Value>} A promise that resolves to a `Value` object representing the wallet's complete balance.
|
|
7388
|
+
*/
|
|
7389
|
+
getBalance(): Promise<Value>;
|
|
7390
|
+
/**
|
|
7391
|
+
* Fetches and parses all used addresses controlled by the wallet.
|
|
7392
|
+
* @returns {Promise<Address[]>} A promise that resolves to an array of parsed `Address` objects.
|
|
7393
|
+
*/
|
|
7394
|
+
getUsedAddresses(): Promise<Address[]>;
|
|
7395
|
+
/**
|
|
7396
|
+
* Fetches and parses all unused addresses controlled by the wallet.
|
|
7397
|
+
* @returns {Promise<Address[]>} A promise that resolves to an array of parsed `Address` objects.
|
|
7398
|
+
*/
|
|
7399
|
+
getUnusedAddresses(): Promise<Address[]>;
|
|
7400
|
+
/**
|
|
7401
|
+
* Fetches and parses a single change address from the wallet.
|
|
7402
|
+
* @returns {Promise<Address>} A promise that resolves to a parsed `Address` object.
|
|
7403
|
+
*/
|
|
7404
|
+
getChangeAddress(): Promise<Address>;
|
|
7405
|
+
/**
|
|
7406
|
+
* Fetches and parses all reward addresses controlled by the wallet.
|
|
7407
|
+
* @returns {Promise<RewardAddress[]>} A promise that resolves to an array of parsed `RewardAddress` objects.
|
|
7408
|
+
*/
|
|
7409
|
+
getRewardAddresses(): Promise<RewardAddress[]>;
|
|
7410
|
+
/**
|
|
7411
|
+
* Requests a transaction signature from the wallet and deserializes the resulting witness set.
|
|
7412
|
+
* @param {string} txCbor - The transaction to be signed, provided as a CBOR hex string.
|
|
7413
|
+
* @param {boolean} partialSign - If true, the wallet will only add its witness for multi-signature transactions.
|
|
7414
|
+
* @returns {Promise<VkeyWitnessSet>} A promise that resolves to the deserialized `VkeyWitnessSet`.
|
|
7415
|
+
*/
|
|
7416
|
+
signTransaction(txCbor: string, partialSign: boolean): Promise<VkeyWitnessSet>;
|
|
7417
|
+
/**
|
|
7418
|
+
* Requests a CIP-8 compliant data signature from the wallet.
|
|
7419
|
+
* @param {Address | string} address - The address to sign with (as an `Address` object or Bech32 string).
|
|
7420
|
+
* @param {string} payload - The hex-encoded data payload to be signed.
|
|
7421
|
+
* @returns {Promise<{ signature: string; key: string }>} A promise that resolves to the signature and public key.
|
|
7422
|
+
*/
|
|
7423
|
+
signData(address: Address | string, payload: string): Promise<{
|
|
7424
|
+
signature: string;
|
|
7425
|
+
key: string;
|
|
7426
|
+
}>;
|
|
7427
|
+
/**
|
|
7428
|
+
* Submits a fully signed transaction to the blockchain via the wallet's provider.
|
|
7429
|
+
* @param {string} txCbor - The fully signed transaction as a CBOR hex string.
|
|
7430
|
+
* @returns {Promise<string>} A promise that resolves to the transaction ID (hash).
|
|
7431
|
+
*/
|
|
7432
|
+
submitTransaction(txCbor: string): Promise<string>;
|
|
7433
|
+
/**
|
|
7434
|
+
* Fetches and deserializes the wallet's collateral UTxOs.
|
|
7435
|
+
* @returns {Promise<TxOut[]>} A promise that resolves to an array of collateral `TxOut` objects.
|
|
7436
|
+
* @remarks Collateral is required for transactions involving Plutus smart contracts.
|
|
7437
|
+
*/
|
|
7438
|
+
getCollateral(): Promise<UTxO[]>;
|
|
7439
|
+
/**
|
|
7440
|
+
* Creates and initializes a new transaction builder with the wallet's current state.
|
|
7441
|
+
*
|
|
7442
|
+
* @returns {Promise<TransactionBuilder>} A promise that resolves to a pre-configured `TransactionBuilder` instance.
|
|
7443
|
+
* @remarks
|
|
7444
|
+
* This method simplifies transaction construction by automatically pre-populating the builder with:
|
|
7445
|
+
* 1. The wallet's available UTxOs as inputs.
|
|
7446
|
+
* 2. The wallet's change address to receive any leftover funds.
|
|
7447
|
+
* 3. The network parameters from the wallet's provider.
|
|
7448
|
+
*
|
|
7449
|
+
* The returned builder is ready for you to add outputs and other transaction details.
|
|
7450
|
+
*/
|
|
7451
|
+
createTransactionBuilder(): Promise<TransactionBuilder>;
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
export { type AccountDerivationPath, Address, AddressType, type AlwaysAbstain, type AlwaysNoConfidence, type Anchor, type AssetAmounts, type AuthCommitteeHotCertificate, Base58, BaseAddress, Bech32, type Bech32DecodeResult, Bip32PrivateKey, Bip32PublicKey, type Bip32SecureKeyHandler, Blake2b, BlockfrostProvider, BrowserExtensionWallet, ByronAddress, ByronAddressType, CborMajorType, CborReader, CborReaderState, CborSimpleValue, CborTag, CborWriter, type Certificate, CertificateType, type Cip30Wallet, type CoinSelector, type CoinSelectorParams, type CoinSelectorResult, CoinType, type CommitteeMember, type CommitteeMembers, type Constitution, type ConstrPlutusData, type CostModel, Crc32, type Credential, type CredentialSet, CredentialType, type DRep, type DRepRegistrationCertificate, type DRepThresholds, type DRepUnregistrationCertificate, type Datum, DatumType, type DerivationPath, Ed25519PrivateKey, Ed25519PublicKey, type Ed25519SecureKeyHandler, Ed25519Signature, Emip003, EmscriptenCoinSelector, EmscriptenProvider, EmscriptenTxEvaluator, EnterpriseAddress, type ExUnits, type ExUnitsPrices, type GenesisKeyDelegationCertificate, type GovernanceActionId, InstanceType, KeyDerivationPurpose, KeyDerivationRole, MAX_SIGNED_64BIT, MAX_UNSIGNED_64BIT, MIN_SIGNED_64BIT, type MirCertificate, MirCertificateKind, MirCertificatePot, type MirToPot, type MirToStakeCreds, type NativeScript, NativeScriptKind, NetworkId, NetworkMagic, Pbkdf2HmacSha512, type PlutusData, PlutusLanguageVersion, type PlutusList, type PlutusMap, type PlutusScript, PointerAddress, type PoolParameters, type PoolRegistrationCertificate, type PoolRetirementCertificate, type PoolVotingThresholds, type ProtocolParameters, type ProtocolParametersUpdate, type ProtocolVersion, type Provider, type Redeemer, RedeemerPurpose, type RegistrationCertificate, type Relay, type RelayByAddress, type RelayByName, type RelayByNameMultihost, type RequireAllOfScript, type RequireAnyOfScript, type RequireAtLeastScript, type RequireSignatureScript, type RequireTimeAfterScript, type RequireTimeBeforeScript, type ResignCommitteeColdCertificate, RewardAddress, type Script, ScriptType, type SecureKeyHandler, type SingleAddressCredentialsConfig, SingleAddressWallet, type SingleAddressWalletConfig, type SingleAddressWalletFromMnemonicsConfig, SoftwareBip32SecureKeyHandler, SoftwareEd25519SecureKeyHandler, type StakeDelegationCertificate, type StakeDeregistrationCertificate, type StakePointer, type StakeRegistrationCertificate, type StakeRegistrationDelegationCertificate, type StakeVoteDelegationCertificate, type StakeVoteRegistrationDelegationCertificate, TransactionBuilder, type TxEvaluator, type TxIn, type TxOut, type UTxO, type UnitInterval, type UnregistrationCertificate, type UpdateDRepCertificate, type Value, type VkeyWitness, type VkeyWitnessSet, Vote, type VoteDelegationCertificate, type VoteRegistrationDelegationCertificate, type Voter, VoterType, type VotingProcedure, type Wallet, type Withdrawals, addWithdrawal, applyVkeyWitnessSet, assertSuccess, assetIdFromParts, assetNameFromAssetId, asyncifyStateTracker, blake2bHashFromBytes, blake2bHashFromHex, bridgeCallbacks, cborToPlutusData, cborToScript, computeScriptHash, deepEqualsPlutusData, deepEqualsScript, derefCostModel, derefCostModels, derefDRepVotingThresholds, derefExUnitPrices, derefExUnits, derefPoolVotingThresholds, derefProtocolParameters, derefProtocolVersion, derefUnitInterval, entropyToMnemonic, finalizationRegistry, getErrorString, getFromInstanceRegistry, getLibCardanoCVersion, getModule, getScriptAddress, harden, hexToBufferObject, hexToUint8Array, isDRepAbstain, isDRepCredential, isDRepNoConfidence, isNativeScript, isPlutusDataBigInt, isPlutusDataByteArray, isPlutusDataConstr, isPlutusDataList, isPlutusDataMap, isPlutusDataWithCborCache, isPlutusScript, isReady, jsonToNativeScript, mnemonicToEntropy, nativeScriptToJson, plutusDataToCbor, policyIdFromAssetId, prepareUtxoForEvaluation, readAnchor, readAssetId, readAuthCommitteeHotCertificate, readBlake2bHashData, readBufferData, readCertificate, readCommitteeMembersMap, readConstitution, readCostModel, readCostModels, readCredential, readCredentialSet, readDRepRegistrationCertificate, readDRepUnregistrationCertificate, readDRepVotingThresholds, readDatum, readExUnitPrices, readExUnits, readGenesisKeyDelegationCertificate, readGovernanceActionId, readI64, readInputSet, readIntervalComponents, readMoveInstantaneousRewardsCertificate, readPlutusData, readPoolParameters, readPoolRegistrationCertificate, readPoolRetirementCertificate, readPoolVotingThresholds, readProtocolParamUpdate, readProtocolParameters, readProtocolVersion, readRedeemer, readRedeemerList, readRedeemersFromTx, readRegistrationCertificate, readResignCommitteeColdCertificate, readScript, readStakeDelegationCertificate, readStakeDeregistrationCertificate, readStakeRegistrationCertificate, readStakeRegistrationDelegationCertificate, readStakeVoteDelegationCertificate, readStakeVoteRegistrationDelegationCertificate, readTransactionFromCbor, readTxIn, readTxOut, readTxOutFromCbor, readUTxOtFromCbor, readUnitIntervalAsDouble, readUnregistrationCertificate, readUpdateDRepCertificate, readUtxo, readUtxoList, readValue, readValueFromCbor, readVkeyWitnessSet, readVkeyWitnessSetFromCbor, readVoteDelegationCertificate, readVoteRegistrationDelegationCertificate, readVoter, readVotingProcedure, readWithdrawalMap, ready, registerBridgeErrorHandler, registerInstance, reportBridgeError, scriptToCbor, splitToLowHigh64bit, toUnitInterval, uint8ArrayToHex, uint8ArrayToUtf8, unrefObject, unregisterBridgeErrorHandler, unregisterInstance, utf8ByteLen, utf8ToUint8Array, writeAccountDerivationPaths, writeAnchor, writeAssetId, writeAuthCommitteeHotCertificate, writeBytesToMemory, writeCertificate, writeCommitteeMembersMap, writeConstitution, writeCostModel, writeCostModels, writeCredential, writeCredentialSet, writeDRepRegistrationCertificate, writeDRepUnregistrationCertificate, writeDRepVotingThresholds, writeDatum, writeDerivationPaths, writeExUnitPrices, writeExUnits, writeGenesisKeyDelegationCertificate, writeGovernanceActionId, writeI64, writeInputSet, writeMoveInstantaneousRewardsCertificate, writePlutusData, writePoolParameters, writePoolRegistrationCertificate, writePoolRetirementCertificate, writePoolVotingThresholds, writeProtocolParamUpdate, writeProtocolParameters, writeProtocolVersion, writeRedeemer, writeRedeemerList, writeRegistrationCertificate, writeResignCommitteeColdCertificate, writeScript, writeStakeDelegationCertificate, writeStakeDeregistrationCertificate, writeStakeRegistrationCertificate, writeStakeRegistrationDelegationCertificate, writeStakeVoteDelegationCertificate, writeStakeVoteRegistrationDelegationCertificate, writeStringToMemory, writeTransactionToCbor, writeTxIn, writeTxOut, writeUnitInterval, writeUnitIntervalAsDouble, writeUnregistrationCertificate, writeUpdateDRepCertificate, writeUtxo, writeUtxoList, writeValue, writeVkeyWitnessSet, writeVoteDelegationCertificate, writeVoteRegistrationDelegationCertificate, writeVoter, writeVotingProcedure, writeWithdrawalMap };
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -7358,4 +7358,97 @@ declare class SingleAddressWallet implements Wallet {
|
|
|
7358
7358
|
private getRewardAddress;
|
|
7359
7359
|
}
|
|
7360
7360
|
|
|
7361
|
-
|
|
7361
|
+
/**
|
|
7362
|
+
* This class acts as an adapter, consuming the raw, CBOR-based API of a CIP-30 wallet
|
|
7363
|
+
* and exposing methods that return deserialized, object types from Cometa.
|
|
7364
|
+
*/
|
|
7365
|
+
declare class BrowserExtensionWallet implements Wallet {
|
|
7366
|
+
private cip30Wallet;
|
|
7367
|
+
private protocolParams;
|
|
7368
|
+
private provider;
|
|
7369
|
+
/**
|
|
7370
|
+
* Constructs a new instance of the BrowserExtensionWallet.
|
|
7371
|
+
* @param {Cip30Wallet} cip30Wallet - The raw CIP-30 wallet API provided by the browser extension.
|
|
7372
|
+
* @param {Provider} provider - The provider used to fetch additional data.
|
|
7373
|
+
*/
|
|
7374
|
+
constructor(cip30Wallet: Cip30Wallet, provider: Provider);
|
|
7375
|
+
/**
|
|
7376
|
+
* Returns the wallet's current network ID.
|
|
7377
|
+
* @returns {Promise<NetworkId>} A promise that resolves to the network ID (0 for Testnet, 1 for Mainnet).
|
|
7378
|
+
*/
|
|
7379
|
+
getNetworkId(): Promise<NetworkId>;
|
|
7380
|
+
/**
|
|
7381
|
+
* Fetches the wallet's UTxOs and deserializes them from CBOR into an array of `TxOut` objects.
|
|
7382
|
+
* @returns {Promise<UTxO[]>} A promise that resolves to an array of the wallet's UTxOs.
|
|
7383
|
+
*/
|
|
7384
|
+
getUnspentOutputs(): Promise<UTxO[]>;
|
|
7385
|
+
/**
|
|
7386
|
+
* Fetches and deserializes the total balance of all assets controlled by the wallet.
|
|
7387
|
+
* @returns {Promise<Value>} A promise that resolves to a `Value` object representing the wallet's complete balance.
|
|
7388
|
+
*/
|
|
7389
|
+
getBalance(): Promise<Value>;
|
|
7390
|
+
/**
|
|
7391
|
+
* Fetches and parses all used addresses controlled by the wallet.
|
|
7392
|
+
* @returns {Promise<Address[]>} A promise that resolves to an array of parsed `Address` objects.
|
|
7393
|
+
*/
|
|
7394
|
+
getUsedAddresses(): Promise<Address[]>;
|
|
7395
|
+
/**
|
|
7396
|
+
* Fetches and parses all unused addresses controlled by the wallet.
|
|
7397
|
+
* @returns {Promise<Address[]>} A promise that resolves to an array of parsed `Address` objects.
|
|
7398
|
+
*/
|
|
7399
|
+
getUnusedAddresses(): Promise<Address[]>;
|
|
7400
|
+
/**
|
|
7401
|
+
* Fetches and parses a single change address from the wallet.
|
|
7402
|
+
* @returns {Promise<Address>} A promise that resolves to a parsed `Address` object.
|
|
7403
|
+
*/
|
|
7404
|
+
getChangeAddress(): Promise<Address>;
|
|
7405
|
+
/**
|
|
7406
|
+
* Fetches and parses all reward addresses controlled by the wallet.
|
|
7407
|
+
* @returns {Promise<RewardAddress[]>} A promise that resolves to an array of parsed `RewardAddress` objects.
|
|
7408
|
+
*/
|
|
7409
|
+
getRewardAddresses(): Promise<RewardAddress[]>;
|
|
7410
|
+
/**
|
|
7411
|
+
* Requests a transaction signature from the wallet and deserializes the resulting witness set.
|
|
7412
|
+
* @param {string} txCbor - The transaction to be signed, provided as a CBOR hex string.
|
|
7413
|
+
* @param {boolean} partialSign - If true, the wallet will only add its witness for multi-signature transactions.
|
|
7414
|
+
* @returns {Promise<VkeyWitnessSet>} A promise that resolves to the deserialized `VkeyWitnessSet`.
|
|
7415
|
+
*/
|
|
7416
|
+
signTransaction(txCbor: string, partialSign: boolean): Promise<VkeyWitnessSet>;
|
|
7417
|
+
/**
|
|
7418
|
+
* Requests a CIP-8 compliant data signature from the wallet.
|
|
7419
|
+
* @param {Address | string} address - The address to sign with (as an `Address` object or Bech32 string).
|
|
7420
|
+
* @param {string} payload - The hex-encoded data payload to be signed.
|
|
7421
|
+
* @returns {Promise<{ signature: string; key: string }>} A promise that resolves to the signature and public key.
|
|
7422
|
+
*/
|
|
7423
|
+
signData(address: Address | string, payload: string): Promise<{
|
|
7424
|
+
signature: string;
|
|
7425
|
+
key: string;
|
|
7426
|
+
}>;
|
|
7427
|
+
/**
|
|
7428
|
+
* Submits a fully signed transaction to the blockchain via the wallet's provider.
|
|
7429
|
+
* @param {string} txCbor - The fully signed transaction as a CBOR hex string.
|
|
7430
|
+
* @returns {Promise<string>} A promise that resolves to the transaction ID (hash).
|
|
7431
|
+
*/
|
|
7432
|
+
submitTransaction(txCbor: string): Promise<string>;
|
|
7433
|
+
/**
|
|
7434
|
+
* Fetches and deserializes the wallet's collateral UTxOs.
|
|
7435
|
+
* @returns {Promise<TxOut[]>} A promise that resolves to an array of collateral `TxOut` objects.
|
|
7436
|
+
* @remarks Collateral is required for transactions involving Plutus smart contracts.
|
|
7437
|
+
*/
|
|
7438
|
+
getCollateral(): Promise<UTxO[]>;
|
|
7439
|
+
/**
|
|
7440
|
+
* Creates and initializes a new transaction builder with the wallet's current state.
|
|
7441
|
+
*
|
|
7442
|
+
* @returns {Promise<TransactionBuilder>} A promise that resolves to a pre-configured `TransactionBuilder` instance.
|
|
7443
|
+
* @remarks
|
|
7444
|
+
* This method simplifies transaction construction by automatically pre-populating the builder with:
|
|
7445
|
+
* 1. The wallet's available UTxOs as inputs.
|
|
7446
|
+
* 2. The wallet's change address to receive any leftover funds.
|
|
7447
|
+
* 3. The network parameters from the wallet's provider.
|
|
7448
|
+
*
|
|
7449
|
+
* The returned builder is ready for you to add outputs and other transaction details.
|
|
7450
|
+
*/
|
|
7451
|
+
createTransactionBuilder(): Promise<TransactionBuilder>;
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
export { type AccountDerivationPath, Address, AddressType, type AlwaysAbstain, type AlwaysNoConfidence, type Anchor, type AssetAmounts, type AuthCommitteeHotCertificate, Base58, BaseAddress, Bech32, type Bech32DecodeResult, Bip32PrivateKey, Bip32PublicKey, type Bip32SecureKeyHandler, Blake2b, BlockfrostProvider, BrowserExtensionWallet, ByronAddress, ByronAddressType, CborMajorType, CborReader, CborReaderState, CborSimpleValue, CborTag, CborWriter, type Certificate, CertificateType, type Cip30Wallet, type CoinSelector, type CoinSelectorParams, type CoinSelectorResult, CoinType, type CommitteeMember, type CommitteeMembers, type Constitution, type ConstrPlutusData, type CostModel, Crc32, type Credential, type CredentialSet, CredentialType, type DRep, type DRepRegistrationCertificate, type DRepThresholds, type DRepUnregistrationCertificate, type Datum, DatumType, type DerivationPath, Ed25519PrivateKey, Ed25519PublicKey, type Ed25519SecureKeyHandler, Ed25519Signature, Emip003, EmscriptenCoinSelector, EmscriptenProvider, EmscriptenTxEvaluator, EnterpriseAddress, type ExUnits, type ExUnitsPrices, type GenesisKeyDelegationCertificate, type GovernanceActionId, InstanceType, KeyDerivationPurpose, KeyDerivationRole, MAX_SIGNED_64BIT, MAX_UNSIGNED_64BIT, MIN_SIGNED_64BIT, type MirCertificate, MirCertificateKind, MirCertificatePot, type MirToPot, type MirToStakeCreds, type NativeScript, NativeScriptKind, NetworkId, NetworkMagic, Pbkdf2HmacSha512, type PlutusData, PlutusLanguageVersion, type PlutusList, type PlutusMap, type PlutusScript, PointerAddress, type PoolParameters, type PoolRegistrationCertificate, type PoolRetirementCertificate, type PoolVotingThresholds, type ProtocolParameters, type ProtocolParametersUpdate, type ProtocolVersion, type Provider, type Redeemer, RedeemerPurpose, type RegistrationCertificate, type Relay, type RelayByAddress, type RelayByName, type RelayByNameMultihost, type RequireAllOfScript, type RequireAnyOfScript, type RequireAtLeastScript, type RequireSignatureScript, type RequireTimeAfterScript, type RequireTimeBeforeScript, type ResignCommitteeColdCertificate, RewardAddress, type Script, ScriptType, type SecureKeyHandler, type SingleAddressCredentialsConfig, SingleAddressWallet, type SingleAddressWalletConfig, type SingleAddressWalletFromMnemonicsConfig, SoftwareBip32SecureKeyHandler, SoftwareEd25519SecureKeyHandler, type StakeDelegationCertificate, type StakeDeregistrationCertificate, type StakePointer, type StakeRegistrationCertificate, type StakeRegistrationDelegationCertificate, type StakeVoteDelegationCertificate, type StakeVoteRegistrationDelegationCertificate, TransactionBuilder, type TxEvaluator, type TxIn, type TxOut, type UTxO, type UnitInterval, type UnregistrationCertificate, type UpdateDRepCertificate, type Value, type VkeyWitness, type VkeyWitnessSet, Vote, type VoteDelegationCertificate, type VoteRegistrationDelegationCertificate, type Voter, VoterType, type VotingProcedure, type Wallet, type Withdrawals, addWithdrawal, applyVkeyWitnessSet, assertSuccess, assetIdFromParts, assetNameFromAssetId, asyncifyStateTracker, blake2bHashFromBytes, blake2bHashFromHex, bridgeCallbacks, cborToPlutusData, cborToScript, computeScriptHash, deepEqualsPlutusData, deepEqualsScript, derefCostModel, derefCostModels, derefDRepVotingThresholds, derefExUnitPrices, derefExUnits, derefPoolVotingThresholds, derefProtocolParameters, derefProtocolVersion, derefUnitInterval, entropyToMnemonic, finalizationRegistry, getErrorString, getFromInstanceRegistry, getLibCardanoCVersion, getModule, getScriptAddress, harden, hexToBufferObject, hexToUint8Array, isDRepAbstain, isDRepCredential, isDRepNoConfidence, isNativeScript, isPlutusDataBigInt, isPlutusDataByteArray, isPlutusDataConstr, isPlutusDataList, isPlutusDataMap, isPlutusDataWithCborCache, isPlutusScript, isReady, jsonToNativeScript, mnemonicToEntropy, nativeScriptToJson, plutusDataToCbor, policyIdFromAssetId, prepareUtxoForEvaluation, readAnchor, readAssetId, readAuthCommitteeHotCertificate, readBlake2bHashData, readBufferData, readCertificate, readCommitteeMembersMap, readConstitution, readCostModel, readCostModels, readCredential, readCredentialSet, readDRepRegistrationCertificate, readDRepUnregistrationCertificate, readDRepVotingThresholds, readDatum, readExUnitPrices, readExUnits, readGenesisKeyDelegationCertificate, readGovernanceActionId, readI64, readInputSet, readIntervalComponents, readMoveInstantaneousRewardsCertificate, readPlutusData, readPoolParameters, readPoolRegistrationCertificate, readPoolRetirementCertificate, readPoolVotingThresholds, readProtocolParamUpdate, readProtocolParameters, readProtocolVersion, readRedeemer, readRedeemerList, readRedeemersFromTx, readRegistrationCertificate, readResignCommitteeColdCertificate, readScript, readStakeDelegationCertificate, readStakeDeregistrationCertificate, readStakeRegistrationCertificate, readStakeRegistrationDelegationCertificate, readStakeVoteDelegationCertificate, readStakeVoteRegistrationDelegationCertificate, readTransactionFromCbor, readTxIn, readTxOut, readTxOutFromCbor, readUTxOtFromCbor, readUnitIntervalAsDouble, readUnregistrationCertificate, readUpdateDRepCertificate, readUtxo, readUtxoList, readValue, readValueFromCbor, readVkeyWitnessSet, readVkeyWitnessSetFromCbor, readVoteDelegationCertificate, readVoteRegistrationDelegationCertificate, readVoter, readVotingProcedure, readWithdrawalMap, ready, registerBridgeErrorHandler, registerInstance, reportBridgeError, scriptToCbor, splitToLowHigh64bit, toUnitInterval, uint8ArrayToHex, uint8ArrayToUtf8, unrefObject, unregisterBridgeErrorHandler, unregisterInstance, utf8ByteLen, utf8ToUint8Array, writeAccountDerivationPaths, writeAnchor, writeAssetId, writeAuthCommitteeHotCertificate, writeBytesToMemory, writeCertificate, writeCommitteeMembersMap, writeConstitution, writeCostModel, writeCostModels, writeCredential, writeCredentialSet, writeDRepRegistrationCertificate, writeDRepUnregistrationCertificate, writeDRepVotingThresholds, writeDatum, writeDerivationPaths, writeExUnitPrices, writeExUnits, writeGenesisKeyDelegationCertificate, writeGovernanceActionId, writeI64, writeInputSet, writeMoveInstantaneousRewardsCertificate, writePlutusData, writePoolParameters, writePoolRegistrationCertificate, writePoolRetirementCertificate, writePoolVotingThresholds, writeProtocolParamUpdate, writeProtocolParameters, writeProtocolVersion, writeRedeemer, writeRedeemerList, writeRegistrationCertificate, writeResignCommitteeColdCertificate, writeScript, writeStakeDelegationCertificate, writeStakeDeregistrationCertificate, writeStakeRegistrationCertificate, writeStakeRegistrationDelegationCertificate, writeStakeVoteDelegationCertificate, writeStakeVoteRegistrationDelegationCertificate, writeStringToMemory, writeTransactionToCbor, writeTxIn, writeTxOut, writeUnitInterval, writeUnitIntervalAsDouble, writeUnregistrationCertificate, writeUpdateDRepCertificate, writeUtxo, writeUtxoList, writeValue, writeVkeyWitnessSet, writeVoteDelegationCertificate, writeVoteRegistrationDelegationCertificate, writeVoter, writeVotingProcedure, writeWithdrawalMap };
|