ServerStaticAddressLoopIn
ServerStaticAddressLoopIn initiates a static address loop-in swap. The server will respond with htlc details that the client can use to construct and sign the htlc tx.
Source: staticaddr.proto
gRPC
rpc ServerStaticAddressLoopIn (ServerStaticAddressLoopInRequest) returns (ServerStaticAddressLoopInResponse);
Code Samples
- gRPC
- Shell
- Javascript
- Python
const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');
const GRPC_HOST = 'localhost:11010'
const MACAROON_PATH = 'LOOP_DIR/regtest/loop.macaroon'
const TLS_PATH = 'LOOP_DIR/tls.cert'
const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('staticaddr.proto', loaderOptions);
const looprpc = grpc.loadPackageDefinition(packageDefinition).looprpc;
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 looprpc.StaticAddressServer(GRPC_HOST, creds);
let request = {
htlc_client_pub_key: <bytes>,
swap_hash: <bytes>,
deposit_outpoints: <string>,
swap_invoice: <string>,
last_hop: <bytes>,
protocol_version: <StaticAddressProtocolVersion>,
user_agent: <string>,
payment_timeout_seconds: <uint32>,
};
client.serverStaticAddressLoopIn(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "htlc_server_pub_key": <bytes>,
// "htlc_expiry": <int32>,
// "standard_htlc_info": <ServerHtlcSigningInfo>,
// "high_fee_htlc_info": <ServerHtlcSigningInfo>,
// "extreme_fee_htlc_info": <ServerHtlcSigningInfo>,
// }
import codecs, grpc, os
# Generate the following 2 modules by compiling the staticaddr.proto with the grpcio-tools.
# See https://github.com/lightningnetwork/lnd/blob/master/docs/grpc/python.md for instructions.
import staticaddr_pb2 as looprpc, staticaddr_pb2_grpc as staticaddrstub
GRPC_HOST = 'localhost:11010'
MACAROON_PATH = 'LOOP_DIR/regtest/loop.macaroon'
TLS_PATH = 'LOOP_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 = staticaddrstub.StaticAddressServerStub(channel)
request = looprpc.ServerStaticAddressLoopInRequest(
htlc_client_pub_key=<bytes>,
swap_hash=<bytes>,
deposit_outpoints=<string>,
swap_invoice=<string>,
last_hop=<bytes>,
protocol_version=<StaticAddressProtocolVersion>,
user_agent=<string>,
payment_timeout_seconds=<uint32>,
)
response = stub.ServerStaticAddressLoopIn(request)
print(response)
# {
# "htlc_server_pub_key": <bytes>,
# "htlc_expiry": <int32>,
# "standard_htlc_info": <ServerHtlcSigningInfo>,
# "high_fee_htlc_info": <ServerHtlcSigningInfo>,
# "extreme_fee_htlc_info": <ServerHtlcSigningInfo>,
# }
# There is no CLI command for this RPC
Messages
looprpc.ServerStaticAddressLoopInRequest
Source: staticaddr.proto
Field | gRPC Type | REST Type | REST Placement |
---|---|---|---|
htlc_client_pub_key | bytes | unknown | unknown |
swap_hash | bytes | unknown | unknown |
deposit_outpoints | string[] | unknown | unknown |
swap_invoice | string | unknown | unknown |
last_hop | bytes | unknown | unknown |
protocol_version | StaticAddressProtocolVersion | unknown | unknown |
user_agent | string | unknown | unknown |
payment_timeout_seconds | uint32 | unknown | unknown |
looprpc.ServerStaticAddressLoopInResponse
Source: staticaddr.proto
Field | gRPC Type | REST Type |
---|---|---|
htlc_server_pub_key | bytes | unknown |
htlc_expiry | int32 | unknown |
standard_htlc_info | ServerHtlcSigningInfo | unknown |
high_fee_htlc_info | ServerHtlcSigningInfo | unknown |
extreme_fee_htlc_info | ServerHtlcSigningInfo | unknown |
Nested Messages
looprpc.ServerHtlcSigningInfo
Field | gRPC Type | REST Type |
---|---|---|
nonces | bytes[] | unknown |
fee_rate | uint64 | unknown |
Enums
looprpc.StaticAddressProtocolVersion
Name | Number |
---|---|
V0 | 0 |