Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit d032ef7

Browse files
committed
Add submitpackage result structures
1 parent 07d0f1e commit d032ef7

File tree

2 files changed

+117
-1
lines changed

2 files changed

+117
-1
lines changed

json/src/v28/mod.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
//! - [ ] `joinpsbts ["psbt",...]`
9191
//! - [ ] `sendrawtransaction "hexstring" ( maxfeerate maxburnamount )`
9292
//! - [ ] `signrawtransactionwithkey "hexstring" ["privatekey",...] ( [{"txid":"hex","vout":n,"scriptPubKey":"hex","redeemScript":"hex","witnessScript":"hex","amount":amount},...] "sighashtype" )`
93-
//! - [ ] `submitpackage ["rawtx",...] ( maxfeerate maxburnamount )`
93+
//! - [x] `submitpackage ["rawtx",...] ( maxfeerate maxburnamount )`
9494
//! - [ ] `testmempoolaccept ["rawtx",...] ( maxfeerate )`
9595
//! - [ ] `utxoupdatepsbt "psbt" ( ["",{"desc":"str","range":n or [n,n]},...] )`
9696
//!
@@ -180,6 +180,10 @@
180180
//! **== Zmq ==**
181181
//! - [ ] `getzmqnotifications`
182182
183+
mod raw_transactions;
184+
185+
#[doc(inline)]
186+
pub use self::raw_transactions::{SubmitPackage, SubmitPackageTxResult, SubmitPackageTxResultFees};
183187
#[doc(inline)]
184188
pub use crate::{
185189
v17::{

json/src/v28/raw_transactions.rs

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
3+
//! The JSON-RPC API for Bitcoin Core v28.0 - raw transactions.
4+
//!
5+
//! Types for methods found under the `== Rawtransactions ==` section of the API docs.
6+
7+
use std::collections::HashMap;
8+
9+
use bitcoin::{Amount, FeeRate, Txid, Wtxid};
10+
use serde::{Deserialize, Serialize};
11+
12+
/// Models the result of JSON-RPC method `submitpackage`.
13+
//submitpackage ["rawtx",...] ( maxfeerate maxburnamount )
14+
//
15+
//Submit a package of raw transactions (serialized, hex-encoded) to local node.
16+
//The package will be validated according to consensus and mempool policy rules. If any transaction passes, it will be accepted to mempool.
17+
//This RPC is experimental and the interface may be unstable. Refer to doc/policy/packages.md for documentation on package policies.
18+
//Warning: successful submission does not mean the transactions will propagate throughout the network.
19+
//
20+
//Arguments:
21+
//1. package (json array, required) An array of raw transactions.
22+
// The package must solely consist of a child and its parents. None of the parents may depend on each other.
23+
// The package must be topologically sorted, with the child being the last element in the array.
24+
// [
25+
// "rawtx", (string)
26+
// ...
27+
// ]
28+
//2. maxfeerate (numeric or string, optional, default="0.10") Reject transactions whose fee rate is higher than the specified value, expressed in BTC/kvB.
29+
// Fee rates larger than 1BTC/kvB are rejected.
30+
// Set to 0 to accept any fee rate.
31+
//3. maxburnamount (numeric or string, optional, default="0.00") Reject transactions with provably unspendable outputs (e.g. 'datacarrier' outputs that use the OP_RETURN opcode) greater than the specified value, expressed in BTC.
32+
// If burning funds through unspendable outputs is desired, increase this value.
33+
// This check is based on heuristics and does not guarantee spendability of outputs.
34+
//
35+
//
36+
//Result:
37+
//{ (json object)
38+
// "package_msg" : "str", (string) The transaction package result message. "success" indicates all transactions were accepted into or are already in the mempool.
39+
// "tx-results" : { (json object) transaction results keyed by wtxid
40+
// "wtxid" : { (json object) transaction wtxid
41+
// "txid" : "hex", (string) The transaction hash in hex
42+
// "other-wtxid" : "hex", (string, optional) The wtxid of a different transaction with the same txid but different witness found in the mempool. This means the submitted transaction was ignored.
43+
// "vsize" : n, (numeric, optional) Sigops-adjusted virtual transaction size.
44+
// "fees" : { (json object, optional) Transaction fees
45+
// "base" : n, (numeric) transaction fee in BTC
46+
// "effective-feerate" : n, (numeric, optional) if the transaction was not already in the mempool, the effective feerate in BTC per KvB. For example, the package feerate and/or feerate with modified fees from prioritisetransaction.
47+
// "effective-includes" : [ (json array, optional) if effective-feerate is provided, the wtxids of the transactions whose fees and vsizes are included in effective-feerate.
48+
// "hex", (string) transaction wtxid in hex
49+
// ...
50+
// ]
51+
// },
52+
// "error" : "str" (string, optional) The transaction error string, if it was rejected by the mempool
53+
// },
54+
// ...
55+
// },
56+
// "replaced-transactions" : [ (json array, optional) List of txids of replaced transactions
57+
// "hex", (string) The transaction id
58+
// ...
59+
// ]
60+
//}
61+
//
62+
//Examples:
63+
//> curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "submitpackage", "params": [["rawtx1", "rawtx2"]]}' -H 'content-type: application/json' http://127.0.0.1:8332/
64+
//> bitcoin-cli submitpackage '["rawtx1", "rawtx2"]'
65+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
66+
pub struct SubmitPackage {
67+
/// The transaction package result message. "success" indicates all transactions were accepted into or are already in the mempool.
68+
pub package_msg: String,
69+
/// Transaction results keyed by [`Wtxid`].
70+
#[serde(rename = "tx-results")]
71+
pub tx_results: HashMap<Wtxid, SubmitPackageTxResult>,
72+
/// List of txids of replaced transactions.
73+
#[serde(rename = "replaced-transactions")]
74+
pub replaced_transactions: Vec<Txid>,
75+
}
76+
77+
/// Models the per-transaction result included in the JSON-RPC method `submitpackage`.
78+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
79+
pub struct SubmitPackageTxResult {
80+
/// The transaction id.
81+
pub txid: Txid,
82+
/// The [`Wtxid`] of a different transaction with the same [`Txid`] but different witness found in the mempool.
83+
///
84+
/// If set, this means the submitted transaction was ignored.
85+
#[serde(rename = "other-wtxid")]
86+
pub other_wtxid: Option<Wtxid>,
87+
/// Sigops-adjusted virtual transaction size.
88+
pub vsize: Option<usize>,
89+
/// Transaction fees.
90+
pub fees: Option<SubmitPackageTxResultFees>,
91+
/// The transaction error string, if it was rejected by the mempool
92+
pub error: Option<String>,
93+
}
94+
95+
/// Models the fees included in the per-transaction result of the JSON-RPC method `submitpackage`.
96+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
97+
pub struct SubmitPackageTxResultFees {
98+
/// Transaction fee.
99+
#[serde(rename = "base")]
100+
pub base_fee: Amount,
101+
/// The effective feerate.
102+
///
103+
/// Will be `None` if the transaction was already in the mempool.
104+
///
105+
/// For example, the package feerate and/or feerate with modified fees from the `prioritisetransaction` JSON-RPC method.
106+
#[serde(rename = "effective-feerate")]
107+
pub effective_feerate: Option<FeeRate>,
108+
/// If [`Self::effective_feerate`] is provided, this holds the [`Wtxid`]s of the transactions
109+
/// whose fees and vsizes are included in effective-feerate.
110+
#[serde(rename = "effective-includes")]
111+
pub effective_includes: Vec<Wtxid>,
112+
}

0 commit comments

Comments
 (0)