|
| 1 | +// SPDX-License-Identifier: CC0-1.0 |
| 2 | + |
| 3 | +//! Macros for implementing JSON-RPC methods on a client. |
| 4 | +//! |
| 5 | +//! Specifically this is methods found under the `== Rawtransactions ==` section of the |
| 6 | +//! API docs of `bitcoind v28.0`. |
| 7 | +//! |
| 8 | +//! All macros require `Client` to be in scope. |
| 9 | +//! |
| 10 | +//! See or use the `define_jsonrpc_minreq_client!` macro to define a `Client`. |
| 11 | +
|
| 12 | +/// Implements bitcoind JSON-RPC API method `submitpackage` |
| 13 | +#[macro_export] |
| 14 | +macro_rules! impl_client_v28__submitpackage { |
| 15 | + () => { |
| 16 | + impl Client { |
| 17 | + /// Submit a package of transactions to local node. |
| 18 | + /// |
| 19 | + /// The package will be validated according to consensus and mempool policy rules. If any transaction passes, it will be accepted to mempool. |
| 20 | + /// |
| 21 | + /// Arguments: |
| 22 | + /// 1. package An array of raw transactions. |
| 23 | + /// The package must solely consist of a child and its parents. None of the parents may depend on each other. |
| 24 | + /// The package must be topologically sorted, with the child being the last element in the array. |
| 25 | + /// 2. maxfeerate Reject transactions whose fee rate is higher than the specified value. |
| 26 | + /// Fee rates larger than 1BTC/kvB are rejected. |
| 27 | + /// Set to 0 to accept any fee rate. |
| 28 | + /// If unset, will default to 0.10 BTC/kvb. |
| 29 | + /// 3. maxburnamount If set, reject transactions with provably unspendable outputs (e.g. 'datacarrier' outputs that use the OP_RETURN opcode) greater than the specified value. |
| 30 | + /// If burning funds through unspendable outputs is desired, increase this value. |
| 31 | + /// This check is based on heuristics and does not guarantee spendability of outputs. |
| 32 | + pub fn submit_package( |
| 33 | + &self, |
| 34 | + package: &[bitcoin::Transaction], |
| 35 | + max_fee_rate: Option<bitcoin::FeeRate>, |
| 36 | + max_burn_amount: Option<bitcoin::Amount>, |
| 37 | + ) -> Result<SubmitPackage> { |
| 38 | + let package_txs = package.map(|tx| bitcoin::consensus::encode::serialize_hex(tx)).collect(); |
| 39 | + let max_fee_rate_btc_kvb = max_fee_rate.map(|r| r.to_sat_per_vb_floor() as f64 / 100_000.0); |
| 40 | + let max_burn_amount_btc = max_burn_amount.map(|a| a.to_btc()); |
| 41 | + self.call("submitpackage", &[package_txs.into(), max_fee_rate_btc_kvb.into(), max_burn_amount_btc.into()]) |
| 42 | + } |
| 43 | + } |
| 44 | + }; |
| 45 | +} |
0 commit comments