/** * Radix Core API * This API is exposed by the Babylon Radix node to give clients access to the Radix Engine, Mempool and State in the node. The default configuration is intended for use by node-runners on a private network, and is not intended to be exposed publicly. Very heavy load may impact the node\'s function. The node exposes a configuration flag which allows disabling certain endpoints which may be problematic, but monitoring is advised. This configuration parameter is `api.core.flags.enable_unbounded_endpoints` / `RADIXDLT_CORE_API_FLAGS_ENABLE_UNBOUNDED_ENDPOINTS`. This API exposes queries against the node\'s current state (see `/lts/state/` or `/state/`), and streams of transaction history (under `/lts/stream/` or `/stream`). If you require queries against snapshots of historical ledger state, you may also wish to consider using the [Gateway API](https://docs-babylon.radixdlt.com/). ## Integration and forward compatibility guarantees Integrators (such as exchanges) are recommended to use the `/lts/` endpoints - they have been designed to be clear and simple for integrators wishing to create and monitor transactions involving fungible transfers to/from accounts. All endpoints under `/lts/` have high guarantees of forward compatibility in future node versions. We may add new fields, but existing fields will not be changed. Assuming the integrating code uses a permissive JSON parser which ignores unknown fields, any additions will not affect existing code. Other endpoints may be changed with new node versions carrying protocol-updates, although any breaking changes will be flagged clearly in the corresponding release notes. All responses may have additional fields added, so clients are advised to use JSON parsers which ignore unknown fields on JSON objects. * * The version of the OpenAPI document: v1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TransactionSubmitPriorityThresholdNotMetErrorDetails */ export interface TransactionSubmitPriorityThresholdNotMetErrorDetails { /** * * @type {string} * @memberof TransactionSubmitPriorityThresholdNotMetErrorDetails */ type: TransactionSubmitPriorityThresholdNotMetErrorDetailsTypeEnum; /** * NOTE: This is kept for backwards compatibility, but we recommend using `tip_proportion` instead. * * Tip percentage of the submitted (and rejected) transaction. For V2 transactions specifying basis point tips, * the amount is rounded down. * @type {number} * @memberof TransactionSubmitPriorityThresholdNotMetErrorDetails * @deprecated */ tip_percentage: number; /** * NOTE: This is kept for backwards compatibility, but we recommend using `min_tip_proportion_required` instead. * * A lower bound for tip percentage at current mempool state. Anything lower than this will very likely result in a mempool rejection. * A missing value means there is no tip that can guarantee submission. * @type {number} * @memberof TransactionSubmitPriorityThresholdNotMetErrorDetails * @deprecated */ min_tip_percentage_required?: number; /** * The string-encoded decimal tip proportion of the submitted (and rejected) transaction. * * This field will always be present on Cuttlefish nodes, but is marked as not-required for Cuttlefish launch, * to avoid a dependency on clients to update after the node is updated. * @type {string} * @memberof TransactionSubmitPriorityThresholdNotMetErrorDetails */ tip_proportion?: string; /** * A lower bound for tip proportion at current mempool state. Anything lower than this will very likely result in a mempool rejection. * A missing value means there is no tip that can guarantee submission. * @type {string} * @memberof TransactionSubmitPriorityThresholdNotMetErrorDetails */ min_tip_proportion_required?: string; } /** * @export */ export declare const TransactionSubmitPriorityThresholdNotMetErrorDetailsTypeEnum: { readonly PriorityThresholdNotMet: "PriorityThresholdNotMet"; }; export type TransactionSubmitPriorityThresholdNotMetErrorDetailsTypeEnum = typeof TransactionSubmitPriorityThresholdNotMetErrorDetailsTypeEnum[keyof typeof TransactionSubmitPriorityThresholdNotMetErrorDetailsTypeEnum]; /** * Check if a given object implements the TransactionSubmitPriorityThresholdNotMetErrorDetails interface. */ export declare function instanceOfTransactionSubmitPriorityThresholdNotMetErrorDetails(value: object): boolean; export declare function TransactionSubmitPriorityThresholdNotMetErrorDetailsFromJSON(json: any): TransactionSubmitPriorityThresholdNotMetErrorDetails; export declare function TransactionSubmitPriorityThresholdNotMetErrorDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionSubmitPriorityThresholdNotMetErrorDetails; export declare function TransactionSubmitPriorityThresholdNotMetErrorDetailsToJSON(value?: TransactionSubmitPriorityThresholdNotMetErrorDetails | null): any;