@cardano-ogmios/schema
Advanced tools
Comparing version 5.5.0-rc.1 to 5.5.0-rc.3
@@ -81,6 +81,6 @@ export declare type Block = Babbage | Alonzo | Mary | Allegra | Shelley | Byron; | ||
export declare type Utxo = [TxIn, TxOut][]; | ||
export declare type SubmitTxError = (EraMismatch | InvalidWitnesses | MissingVkWitnesses | MissingScriptWitnesses | ScriptWitnessNotValidating | InsufficientGenesisSignatures | MissingTxMetadata | MissingTxMetadataHash | TxMetadataHashMismatch | BadInputs | ExpiredUtxo | OutsideOfValidityInterval | TxTooLarge | MissingAtLeastOneInputUtxo | InvalidMetadata | FeeTooSmall | ValueNotConserved | NetworkMismatch | OutputTooSmall | TooManyAssetsInOutput | AddressAttributesTooLarge | TriesToForgeAda | DelegateNotRegistered | UnknownOrIncompleteWithdrawals | StakePoolNotRegistered | WrongRetirementEpoch | WrongPoolCertificate | StakeKeyAlreadyRegistered | PoolCostTooSmall | PoolMetadataHashTooBig | StakeKeyNotRegistered | RewardAccountNotExisting | RewardAccountNotEmpty | WrongCertificateType | UnknownGenesisKey | AlreadyDelegating | InsufficientFundsForMir | TooLateForMir | MirTransferNotCurrentlyAllowed | MirNegativeTransferNotCurrentlyAllowed | MirProducesNegativeUpdate | DuplicateGenesisVrf | NonGenesisVoters | UpdateWrongEpoch | ProtocolVersionCannotFollow | MissingRequiredRedeemers | MissingRequiredDatums | UnspendableDatums | ExtraDataMismatch | MissingRequiredSignatures | UnspendableScriptInputs | ExtraRedeemers | MissingDatumHashesForInputs | MissingCollateralInputs | CollateralTooSmall | CollateralIsScript | CollateralHasNonAdaAssets | TooManyCollateralInputs | ExecutionUnitsTooLarge | OutsideForecast | ValidationTagMismatch | CollectErrors | ExtraScriptWitnesses | MirNegativeTransfer | TotalCollateralMismatch | MalformedOutputScripts)[]; | ||
export declare type SubmitTxError = (EraMismatch | InvalidWitnesses | MissingVkWitnesses | MissingScriptWitnesses | ScriptWitnessNotValidating | InsufficientGenesisSignatures | MissingTxMetadata | MissingTxMetadataHash | TxMetadataHashMismatch | BadInputs | ExpiredUtxo | OutsideOfValidityInterval | TxTooLarge | MissingAtLeastOneInputUtxo | InvalidMetadata | FeeTooSmall | ValueNotConserved | NetworkMismatch | OutputTooSmall | TooManyAssetsInOutput | AddressAttributesTooLarge | TriesToForgeAda | DelegateNotRegistered | UnknownOrIncompleteWithdrawals | StakePoolNotRegistered | WrongRetirementEpoch | WrongPoolCertificate | StakeKeyAlreadyRegistered | PoolCostTooSmall | PoolMetadataHashTooBig | StakeKeyNotRegistered | RewardAccountNotExisting | RewardAccountNotEmpty | WrongCertificateType | UnknownGenesisKey | AlreadyDelegating | InsufficientFundsForMir | TooLateForMir | MirTransferNotCurrentlyAllowed | MirNegativeTransferNotCurrentlyAllowed | MirProducesNegativeUpdate | DuplicateGenesisVrf | NonGenesisVoters | UpdateWrongEpoch | ProtocolVersionCannotFollow | MissingRequiredRedeemers | MissingRequiredDatums | UnspendableDatums | ExtraDataMismatch | MissingRequiredSignatures | UnspendableScriptInputs | ExtraRedeemers | MissingDatumHashesForInputs | MissingCollateralInputs | CollateralTooSmall | CollateralIsScript | CollateralHasNonAdaAssets | TooManyCollateralInputs | ExecutionUnitsTooLarge | OutsideForecast | ValidationTagMismatch | CollectErrors | ExtraScriptWitnesses | MirNegativeTransfer | TotalCollateralMismatch | MalformedReferenceScripts | MalformedScriptWitnesses)[]; | ||
export declare type RedeemerPointer = string; | ||
export declare type Language = "plutus:v1" | "plutus:v2"; | ||
export declare type ScriptFailure = (ExtraRedeemers | MissingRequiredDatums | MissingRequiredScripts | ValidatorFailed | UnknownInputReferencedByRedeemer | NonScriptInputReferencedByRedeemer | IllFormedExecutionBudget | NoCostModelForLanguage | CorruptCostModelForLanguage)[]; | ||
export declare type ScriptFailure = (ExtraRedeemers | MissingRequiredDatums | MissingRequiredScripts | ValidatorFailed | UnknownInputReferencedByRedeemer | NonScriptInputReferencedByRedeemer | IllFormedExecutionBudget | NoCostModelForLanguage)[]; | ||
export declare type AcquireFailureDetails = "pointTooOld" | "pointNotOnChain"; | ||
@@ -280,3 +280,3 @@ export declare type GetEraStart = "eraStart"; | ||
methodname: "NextTx"; | ||
result: TxId | TxBabbage | Null; | ||
result: TxId | TxAlonzo | TxBabbage | Null; | ||
reflection?: { | ||
@@ -594,6 +594,6 @@ [k: string]: unknown; | ||
inputs: TxIn[]; | ||
references?: TxIn[]; | ||
references: TxIn[]; | ||
collaterals: TxIn[]; | ||
collateralReturn?: TxOut | Null; | ||
totalCollateral?: Lovelace | Null; | ||
collateralReturn: TxOut | Null; | ||
totalCollateral: Lovelace | Null; | ||
outputs: TxOut[]; | ||
@@ -1521,9 +1521,12 @@ certificates: Certificate[]; | ||
totalCollateralMismatch: { | ||
needed: Lovelace; | ||
specified: Lovelace; | ||
computedFromDelta: Lovelace; | ||
declaredInField: Lovelace; | ||
}; | ||
} | ||
export interface MalformedOutputScripts { | ||
malformedOutputScripts: DigestBlake2BScript[]; | ||
export interface MalformedReferenceScripts { | ||
malformedReferenceScripts: DigestBlake2BScript[]; | ||
} | ||
export interface MalformedScriptWitnesses { | ||
malformedScriptWitnesses: DigestBlake2BScript[]; | ||
} | ||
export interface EvaluationResult { | ||
@@ -1535,3 +1538,3 @@ EvaluationResult: { | ||
export interface EvaluationFailure { | ||
EvaluationFailure: EvaluationFailureScriptFailures | EvaluationFailureUnknownInputs | EvaluationFailureIncompatibleEra | EvaluationFailureUncomputableSlotArithmetic | EvaluationFailureAdditionalUtxoOverlap | EvaluationFailureNotEnoughSynced | EvaluationFailureCannotCreateEvaluationContext; | ||
EvaluationFailure: EvaluationFailureScriptFailures | EvaluationFailureIncompatibleEra | EvaluationFailureAdditionalUtxoOverlap | EvaluationFailureNotEnoughSynced | EvaluationFailureCannotCreateEvaluationContext; | ||
} | ||
@@ -1546,2 +1549,5 @@ export interface EvaluationFailureScriptFailures { | ||
missing: RedeemerPointer[]; | ||
resolved: { | ||
[k: string]: DigestBlake2BScript; | ||
}; | ||
}; | ||
@@ -1567,14 +1573,5 @@ } | ||
} | ||
export interface CorruptCostModelForLanguage { | ||
corruptCostModelForLanguage: Language; | ||
} | ||
export interface EvaluationFailureUnknownInputs { | ||
UnknownInputs: TxIn[]; | ||
} | ||
export interface EvaluationFailureIncompatibleEra { | ||
IncompatibleEra: "Byron" | "Shelley" | "Allegra" | "Mary"; | ||
} | ||
export interface EvaluationFailureUncomputableSlotArithmetic { | ||
UncomputableSlotArithmetic: string; | ||
} | ||
export interface EvaluationFailureAdditionalUtxoOverlap { | ||
@@ -1581,0 +1578,0 @@ AdditionalUtxoOverlap: TxIn[]; |
{ | ||
"name": "@cardano-ogmios/schema", | ||
"version": "5.5.0-rc.1", | ||
"version": "5.5.0-rc.3", | ||
"description": "Generated TypeScript from the Cardano Ogmios schema", | ||
@@ -5,0 +5,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
115352
1738