2018-03-16 04:45:08 +01:00
|
|
|
#include <arpa/inet.h>
|
2019-09-29 15:16:40 +02:00
|
|
|
#include <bitcoin/address.h>
|
|
|
|
#include <bitcoin/base58.h>
|
|
|
|
#include <bitcoin/script.h>
|
2019-06-12 02:38:54 +02:00
|
|
|
#include <ccan/json_escape/json_escape.h>
|
2018-08-21 15:58:55 +02:00
|
|
|
#include <ccan/mem/mem.h>
|
2018-08-30 15:48:36 +02:00
|
|
|
#include <ccan/str/hex/hex.h>
|
2018-05-07 06:29:21 +02:00
|
|
|
#include <ccan/tal/str/str.h>
|
2019-09-29 15:16:40 +02:00
|
|
|
#include <common/bech32.h>
|
2020-05-15 12:29:53 +02:00
|
|
|
#include <common/channel_id.h>
|
2018-03-16 04:45:08 +01:00
|
|
|
#include <common/json.h>
|
2018-12-08 01:39:28 +01:00
|
|
|
#include <common/json_command.h>
|
2019-01-15 04:54:27 +01:00
|
|
|
#include <common/json_helpers.h>
|
2018-12-08 01:39:28 +01:00
|
|
|
#include <common/jsonrpc_errors.h>
|
2018-10-19 03:17:48 +02:00
|
|
|
#include <common/memleak.h>
|
2018-12-08 01:39:28 +01:00
|
|
|
#include <common/param.h>
|
2018-03-16 04:45:08 +01:00
|
|
|
#include <common/type_to_string.h>
|
2019-10-15 12:58:30 +02:00
|
|
|
#include <common/utils.h>
|
2018-03-16 04:45:08 +01:00
|
|
|
#include <gossipd/routing.h>
|
2019-09-29 15:16:40 +02:00
|
|
|
#include <lightningd/chaintopology.h>
|
2018-08-10 22:16:22 +02:00
|
|
|
#include <lightningd/jsonrpc.h>
|
2018-03-16 04:45:08 +01:00
|
|
|
#include <lightningd/options.h>
|
|
|
|
#include <sys/socket.h>
|
2018-04-30 14:54:39 +02:00
|
|
|
#include <wire/wire.h>
|
2018-03-16 04:45:08 +01:00
|
|
|
|
2018-12-16 05:50:06 +01:00
|
|
|
struct command_result *param_pubkey(struct command *cmd, const char *name,
|
|
|
|
const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct pubkey **pubkey)
|
2018-08-14 23:19:31 +02:00
|
|
|
{
|
|
|
|
*pubkey = tal(cmd, struct pubkey);
|
|
|
|
if (json_to_pubkey(buffer, tok, *pubkey))
|
2018-12-16 05:50:06 +01:00
|
|
|
return NULL;
|
2018-08-14 23:19:31 +02:00
|
|
|
|
2020-08-25 23:20:50 +02:00
|
|
|
return command_fail_badparam(cmd, name, buffer, tok,
|
|
|
|
"should be a compressed pubkey");
|
2019-06-05 07:28:53 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 05:50:06 +01:00
|
|
|
struct command_result *param_short_channel_id(struct command *cmd,
|
|
|
|
const char *name,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *tok,
|
|
|
|
struct short_channel_id **scid)
|
2018-08-15 16:20:40 +02:00
|
|
|
{
|
|
|
|
*scid = tal(cmd, struct short_channel_id);
|
2019-09-06 08:41:41 +02:00
|
|
|
if (json_to_short_channel_id(buffer, tok, *scid))
|
2018-12-16 05:50:06 +01:00
|
|
|
return NULL;
|
2018-08-15 16:20:40 +02:00
|
|
|
|
2020-08-25 23:20:50 +02:00
|
|
|
return command_fail_badparam(cmd, name, buffer, tok,
|
|
|
|
"should be a short_channel_id of form NxNxN");
|
2018-03-16 04:45:08 +01:00
|
|
|
}
|
|
|
|
|
2018-12-16 05:50:06 +01:00
|
|
|
struct command_result *param_feerate_style(struct command *cmd,
|
|
|
|
const char *name,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *tok,
|
|
|
|
enum feerate_style **style)
|
2018-08-27 07:11:39 +02:00
|
|
|
{
|
|
|
|
*style = tal(cmd, enum feerate_style);
|
|
|
|
if (json_tok_streq(buffer, tok,
|
2020-07-07 22:50:21 +02:00
|
|
|
feerate_style_name(FEERATE_PER_KSIPA))) {
|
2018-08-27 07:11:39 +02:00
|
|
|
**style = FEERATE_PER_KSIPA;
|
2018-12-16 05:50:06 +01:00
|
|
|
return NULL;
|
2018-08-27 07:11:39 +02:00
|
|
|
} else if (json_tok_streq(buffer, tok,
|
2020-07-07 22:50:21 +02:00
|
|
|
feerate_style_name(FEERATE_PER_KBYTE))) {
|
2018-08-27 07:11:39 +02:00
|
|
|
**style = FEERATE_PER_KBYTE;
|
2018-12-16 05:50:06 +01:00
|
|
|
return NULL;
|
2018-08-27 07:11:39 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 05:50:06 +01:00
|
|
|
return command_fail(cmd, JSONRPC2_INVALID_PARAMS,
|
|
|
|
"'%s' should be '%s' or '%s', not '%.*s'",
|
|
|
|
name,
|
2020-07-07 22:50:21 +02:00
|
|
|
feerate_style_name(FEERATE_PER_KSIPA),
|
|
|
|
feerate_style_name(FEERATE_PER_KBYTE),
|
2018-12-16 05:50:06 +01:00
|
|
|
json_tok_full_len(tok), json_tok_full(buffer, tok));
|
2018-08-27 07:11:39 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 05:50:06 +01:00
|
|
|
struct command_result *param_feerate(struct command *cmd, const char *name,
|
|
|
|
const char *buffer, const jsmntok_t *tok,
|
|
|
|
u32 **feerate)
|
2018-08-28 22:46:32 +02:00
|
|
|
{
|
2018-08-28 22:46:34 +02:00
|
|
|
for (size_t i = 0; i < NUM_FEERATES; i++) {
|
|
|
|
if (json_tok_streq(buffer, tok, feerate_name(i)))
|
2018-12-16 05:50:06 +01:00
|
|
|
return param_feerate_estimate(cmd, feerate, i);
|
2018-08-28 22:46:34 +02:00
|
|
|
}
|
chaintopology: better feerate targets differentiation
We kept track of an URGENT, a NORMAL, and a SLOW feerate. They were used
for opening (NORMAL), mutual (NORMAL), UNILATERAL (URGENT) transactions
as well as minimum and maximum estimations, and onchain resolution.
We now keep track of more fine-grained feerates:
- `opening` used for funding and also misc transactions
- `mutual_close` used for the mutual close transaction
- `unilateral_close` used for unilateral close (commitment transactions)
- `delayed_to_us` used for resolving our output from our unilateral close
- `htlc_resolution` used for resolving onchain HTLCs
- `penalty` used for resolving revoked transactions
We don't modify our requests to our Bitcoin backend, as the next commit
will batch them !
Changelog-deprecated: The "urgent", "slow", and "normal" field of the `feerates` command are now deprecated.
Changelog-added: The fields "opening", "mutual_close", "unilateral_close", "delayed_to_us", "htlc_resolution" and "penalty" have been added to the `feerates` command.
2020-03-10 17:52:13 +01:00
|
|
|
/* We used SLOW, NORMAL, and URGENT as feerate targets previously,
|
|
|
|
* and many commands rely on this syntax now.
|
|
|
|
* It's also really more natural for an user interface. */
|
|
|
|
if (json_tok_streq(buffer, tok, "slow"))
|
|
|
|
return param_feerate_estimate(cmd, feerate, FEERATE_MIN);
|
|
|
|
else if (json_tok_streq(buffer, tok, "normal"))
|
|
|
|
return param_feerate_estimate(cmd, feerate, FEERATE_OPENING);
|
|
|
|
else if (json_tok_streq(buffer, tok, "urgent"))
|
|
|
|
return param_feerate_estimate(cmd, feerate, FEERATE_UNILATERAL_CLOSE);
|
2018-08-28 22:46:34 +02:00
|
|
|
|
2020-07-07 22:50:21 +02:00
|
|
|
/* It's a number... */
|
|
|
|
return param_feerate_val(cmd, name, buffer, tok, feerate);
|
2018-08-28 22:46:32 +02:00
|
|
|
}
|
|
|
|
|
2018-04-30 14:54:39 +02:00
|
|
|
bool
|
|
|
|
json_tok_channel_id(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct channel_id *cid)
|
|
|
|
{
|
|
|
|
return hex_decode(buffer + tok->start, tok->end - tok->start,
|
|
|
|
cid, sizeof(*cid));
|
|
|
|
}
|