Socket
Socket
Sign inDemoInstall

@cardano-ogmios/schema

Package Overview
Dependencies
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cardano-ogmios/schema - npm Package Compare versions

Comparing version 5.0.0 to 5.1.0

117

dist/index.d.ts

@@ -81,3 +81,3 @@ export declare type Block = Byron | Shelley | Allegra | Mary | Alonzo;

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)[];
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)[];
export declare type AcquireFailureDetails = "pointTooOld" | "pointNotOnChain";

@@ -215,2 +215,104 @@ export declare type GetEraStart = "eraStart";

};
AwaitAcquire: {
type: "jsonwsp/request";
version: "1.0";
servicename: "ogmios";
methodname: "AwaitAcquire";
args?: {};
mirror?: {
[k: string]: unknown;
};
};
AwaitAcquireResponse: {
type: "jsonwsp/response";
version: "1.0";
servicename: "ogmios";
methodname: "AwaitAcquire";
result: AwaitAcquired;
reflection?: {
[k: string]: unknown;
};
};
NextTx: {
type: "jsonwsp/request";
version: "1.0";
servicename: "ogmios";
methodname: "NextTx";
args?: {};
mirror?: {
[k: string]: unknown;
};
};
NextTxResponse: {
type: "jsonwsp/response";
version: "1.0";
servicename: "ogmios";
methodname: "NextTx";
result: TxId | Null;
reflection?: {
[k: string]: unknown;
};
};
HasTx: {
type: "jsonwsp/request";
version: "1.0";
servicename: "ogmios";
methodname: "HasTx";
args?: {
id: TxId;
};
mirror?: {
[k: string]: unknown;
};
};
HasTxResponse: {
type: "jsonwsp/response";
version: "1.0";
servicename: "ogmios";
methodname: "HasTx";
result: boolean;
reflection?: {
[k: string]: unknown;
};
};
SizeAndCapacity: {
type: "jsonwsp/request";
version: "1.0";
servicename: "ogmios";
methodname: "SizeAndCapacity";
args?: {};
mirror?: {
[k: string]: unknown;
};
};
SizeAndCapacityResponse: {
type: "jsonwsp/response";
version: "1.0";
servicename: "ogmios";
methodname: "SizeAndCapacity";
result: MempoolSizeAndCapacity;
reflection?: {
[k: string]: unknown;
};
};
ReleaseMempool?: {
type: "jsonwsp/request";
version: "1.0";
servicename: "ogmios";
methodname: "ReleaseMempool";
args?: {};
mirror?: {
[k: string]: unknown;
};
};
ReleaseMempoolResponse?: {
type: "jsonwsp/response";
version: "1.0";
servicename: "ogmios";
methodname: "ReleaseMempool";
result: "Released";
reflection?: {
[k: string]: unknown;
};
};
Query: {

@@ -1261,2 +1363,5 @@ type: "jsonwsp/request";

}
export interface ExtraScriptWitnesses {
extraScriptWitnesses: DigestBlake2BScript[];
}
export interface AcquireSuccess {

@@ -1272,2 +1377,12 @@ AcquireSuccess: {

}
export interface AwaitAcquired {
AwaitAcquired: {
slot: Slot;
};
}
export interface MempoolSizeAndCapacity {
capacity: UInt32;
currentSize: UInt32;
numberOfTxs: UInt32;
}
export interface GetNonMyopicMemberRewards {

@@ -1274,0 +1389,0 @@ nonMyopicMemberRewards: Lovelaces | Credentials;

4

package.json
{
"name": "@cardano-ogmios/schema",
"version": "5.0.0",
"version": "5.1.0",
"description": "Generated TypeScript from the Cardano Ogmios schema",
"engines": {
"node": "^14"
"node": ">=14"
},

@@ -8,0 +8,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc