SendPaymentSync
SendPaymentSync is the synchronous non-streaming version of SendPayment. This RPC is intended to be consumed by clients of the REST proxy. Additionally, this RPC expects the destination's public key and the payment hash (if any) to be encoded as hex strings.
Source: lightning.proto
gRPC
rpc SendPaymentSync (SendRequest) returns (SendResponse);
REST
HTTP Method | Path |
---|---|
POST | /v1/channels/transactions |
Code Samples
- gRPC
- REST
- Shell
- Javascript
- Python
const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');
const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'
const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lightning.proto', loaderOptions);
const lnrpc = grpc.loadPackageDefinition(packageDefinition).lnrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new lnrpc.Lightning(GRPC_HOST, creds);
let request = {
dest: <bytes>,
dest_string: <string>,
amt: <int64>,
amt_msat: <int64>,
payment_hash: <bytes>,
payment_hash_string: <string>,
payment_request: <string>,
final_cltv_delta: <int32>,
fee_limit: <FeeLimit>,
outgoing_chan_id: <uint64>,
last_hop_pubkey: <bytes>,
cltv_limit: <uint32>,
dest_custom_records: <DestCustomRecordsEntry>,
allow_self_payment: <bool>,
dest_features: <FeatureBit>,
payment_addr: <bytes>,
};
client.sendPaymentSync(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "payment_error": <string>,
// "payment_preimage": <bytes>,
// "payment_route": <Route>,
// "payment_hash": <bytes>,
// }
import codecs, grpc, os
# Generate the following 2 modules by compiling the lightning.proto with the grpcio-tools.
# See https://github.com/lightningnetwork/lnd/blob/master/docs/grpc/python.md for instructions.
import lightning_pb2 as lnrpc, lightning_pb2_grpc as lightningstub
GRPC_HOST = 'localhost:10009'
MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
TLS_PATH = 'LND_DIR/tls.cert'
# create macaroon credentials
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
def metadata_callback(context, callback):
callback([('macaroon', macaroon)], None)
auth_creds = grpc.metadata_call_credentials(metadata_callback)
# create SSL credentials
os.environ['GRPC_SSL_CIPHER_SUITES'] = 'HIGH+ECDSA'
cert = open(TLS_PATH, 'rb').read()
ssl_creds = grpc.ssl_channel_credentials(cert)
# combine macaroon and SSL credentials
combined_creds = grpc.composite_channel_credentials(ssl_creds, auth_creds)
# make the request
channel = grpc.secure_channel(GRPC_HOST, combined_creds)
stub = lightningstub.LightningStub(channel)
request = lnrpc.SendRequest(
dest=<bytes>,
dest_string=<string>,
amt=<int64>,
amt_msat=<int64>,
payment_hash=<bytes>,
payment_hash_string=<string>,
payment_request=<string>,
final_cltv_delta=<int32>,
fee_limit=<FeeLimit>,
outgoing_chan_id=<uint64>,
last_hop_pubkey=<bytes>,
cltv_limit=<uint32>,
dest_custom_records=<DestCustomRecordsEntry>,
allow_self_payment=<bool>,
dest_features=<FeatureBit>,
payment_addr=<bytes>,
)
response = stub.SendPaymentSync(request)
print(response)
# {
# "payment_error": <string>,
# "payment_preimage": <bytes>,
# "payment_route": <Route>,
# "payment_hash": <bytes>,
# }
- Javascript
- Python
const fs = require('fs');
const request = require('request');
const REST_HOST = 'localhost:8080'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
let requestBody = {
dest: <string>, // <bytes> (base64 encoded)
dest_string: <string>, // <string>
amt: <string>, // <int64>
amt_msat: <string>, // <int64>
payment_hash: <string>, // <bytes> (base64 encoded)
payment_hash_string: <string>, // <string>
payment_request: <string>, // <string>
final_cltv_delta: <integer>, // <int32>
fee_limit: <object>, // <FeeLimit>
outgoing_chan_id: <string>, // <uint64>
last_hop_pubkey: <string>, // <bytes> (base64 encoded)
cltv_limit: <integer>, // <uint32>
dest_custom_records: <object>, // <DestCustomRecordsEntry>
allow_self_payment: <boolean>, // <bool>
dest_features: <array>, // <FeatureBit>
payment_addr: <string>, // <bytes> (base64 encoded)
};
let options = {
url: `https://${REST_HOST}/v1/channels/transactions`,
// Work-around for self-signed certificates.
rejectUnauthorized: false,
json: true,
headers: {
'Grpc-Metadata-macaroon': fs.readFileSync(MACAROON_PATH).toString('hex'),
},
form: JSON.stringify(requestBody),
}
request.post(options, function(error, response, body) {
console.log(body);
});
// Console output:
// {
// "payment_error": <string>, // <string>
// "payment_preimage": <string>, // <bytes>
// "payment_route": <object>, // <Route>
// "payment_hash": <string>, // <bytes>
// }
import base64, codecs, json, requests
REST_HOST = 'localhost:8080'
MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
TLS_PATH = 'LND_DIR/tls.cert'
url = f'https://{REST_HOST}/v1/channels/transactions'
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
headers = {'Grpc-Metadata-macaroon': macaroon}
data = {
'dest': base64.b64encode(<bytes>),
'dest_string': <string>,
'amt': <int64>,
'amt_msat': <int64>,
'payment_hash': base64.b64encode(<bytes>),
'payment_hash_string': <string>,
'payment_request': <string>,
'final_cltv_delta': <int32>,
'fee_limit': <FeeLimit>,
'outgoing_chan_id': <uint64>,
'last_hop_pubkey': base64.b64encode(<bytes>),
'cltv_limit': <uint32>,
'dest_custom_records': <DestCustomRecordsEntry>,
'allow_self_payment': <bool>,
'dest_features': <FeatureBit>,
'payment_addr': base64.b64encode(<bytes>),
}
r = requests.post(url, headers=headers, data=json.dumps(data), verify=TLS_PATH)
print(r.json())
# {
# "payment_error": <string>,
# "payment_preimage": <bytes>,
# "payment_route": <Route>,
# "payment_hash": <bytes>,
# }
# There is no CLI command for this RPC
Messages
lnrpc.SendRequest
Source: lightning.proto
Field | gRPC Type | REST Type | REST Placement |
---|---|---|---|
dest | bytes | string | body |
dest_string deprecated | string | string | body |
amt | int64 | string | body |
amt_msat | int64 | string | body |
payment_hash | bytes | string | body |
payment_hash_string deprecated | string | string | body |
payment_request | string | string | body |
final_cltv_delta | int32 | integer | body |
fee_limit | FeeLimit | object | body |
outgoing_chan_id | uint64 | string | body |
last_hop_pubkey | bytes | string | body |
cltv_limit | uint32 | integer | body |
dest_custom_records | DestCustomRecordsEntry[] | object | body |
allow_self_payment | bool | boolean | body |
dest_features | FeatureBit[] | array | body |
payment_addr | bytes | string | body |
lnrpc.SendResponse
Source: lightning.proto
Field | gRPC Type | REST Type |
---|---|---|
payment_error | string | string |
payment_preimage | bytes | string |
payment_route | Route | object |
payment_hash | bytes | string |
Nested Messages
lnrpc.AMPRecord
Field | gRPC Type | REST Type |
---|---|---|
root_share | bytes | string |
set_id | bytes | string |
child_index | uint32 | integer |
lnrpc.FeeLimit
Field | gRPC Type | REST Type |
---|---|---|
fixed | int64 | string |
fixed_msat | int64 | string |
percent | int64 | string |
lnrpc.Hop
Field | gRPC Type | REST Type |
---|---|---|
chan_id | uint64 | string |
chan_capacity | int64 | string |
amt_to_forward | int64 | string |
fee | int64 | string |
expiry | uint32 | integer |
amt_to_forward_msat | int64 | string |
fee_msat | int64 | string |
pub_key | string | string |
tlv_payload | bool | boolean |
mpp_record | MPPRecord | object |
amp_record | AMPRecord | object |
custom_records | CustomRecordsEntry[] | object |
metadata | bytes | string |
blinding_point | bytes | string |
encrypted_data | bytes | string |
total_amt_msat | uint64 | string |
lnrpc.Hop.CustomRecordsEntry
Field | gRPC Type | REST Type |
---|---|---|
key | uint64 | unknown |
value | bytes | unknown |
lnrpc.MPPRecord
Field | gRPC Type | REST Type |
---|---|---|
payment_addr | bytes | string |
total_amt_msat | int64 | string |
lnrpc.Route
Field | gRPC Type | REST Type |
---|---|---|
total_time_lock | uint32 | integer |
total_fees | int64 | string |
total_amt | int64 | string |
hops | Hop[] | array |
total_fees_msat | int64 | string |
total_amt_msat | int64 | string |
first_hop_amount_msat | int64 | string |
custom_channel_data | bytes | string |
lnrpc.SendRequest.DestCustomRecordsEntry
Field | gRPC Type | REST Type |
---|---|---|
key | uint64 | unknown |
value | bytes | unknown |
Enums
lnrpc.FeatureBit
Name | Number |
---|---|
DATALOSS_PROTECT_REQ | 0 |
DATALOSS_PROTECT_OPT | 1 |
INITIAL_ROUING_SYNC | 3 |
UPFRONT_SHUTDOWN_SCRIPT_REQ | 4 |
UPFRONT_SHUTDOWN_SCRIPT_OPT | 5 |
GOSSIP_QUERIES_REQ | 6 |
GOSSIP_QUERIES_OPT | 7 |
TLV_ONION_REQ | 8 |
TLV_ONION_OPT | 9 |
EXT_GOSSIP_QUERIES_REQ | 10 |
EXT_GOSSIP_QUERIES_OPT | 11 |
STATIC_REMOTE_KEY_REQ | 12 |
STATIC_REMOTE_KEY_OPT | 13 |
PAYMENT_ADDR_REQ | 14 |
PAYMENT_ADDR_OPT | 15 |
MPP_REQ | 16 |
MPP_OPT | 17 |
WUMBO_CHANNELS_REQ | 18 |
WUMBO_CHANNELS_OPT | 19 |
ANCHORS_REQ | 20 |
ANCHORS_OPT | 21 |
ANCHORS_ZERO_FEE_HTLC_REQ | 22 |
ANCHORS_ZERO_FEE_HTLC_OPT | 23 |
ROUTE_BLINDING_REQUIRED | 24 |
ROUTE_BLINDING_OPTIONAL | 25 |
AMP_REQ | 30 |
AMP_OPT | 31 |