WithdrawAccount
WithdrawAccount splits off parts of the account balance into the specified outputs while recreating the account with a reduced balance.
Source: poolrpc/trader.proto
gRPC
rpc WithdrawAccount (WithdrawAccountRequest) returns (WithdrawAccountResponse);
REST
HTTP Method | Path |
---|---|
POST | /v1/pool/accounts/withdraw |
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:12010'
const MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
const TLS_PATH = 'POOL_DIR/tls.cert'
const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('poolrpc/trader.proto', loaderOptions);
const poolrpc = grpc.loadPackageDefinition(packageDefinition).poolrpc;
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 poolrpc.Trader(GRPC_HOST, creds);
let request = {
trader_key: <bytes>,
outputs: <Output>,
fee_rate_sat_per_kw: <uint64>,
absolute_expiry: <uint32>,
relative_expiry: <uint32>,
new_version: <AccountVersion>,
};
client.withdrawAccount(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "account": <Account>,
// "withdraw_txid": <bytes>,
// }
import codecs, grpc, os
# Generate the following 2 modules by compiling the poolrpc/trader.proto with the grpcio-tools.
# See https://github.com/lightningnetwork/lnd/blob/master/docs/grpc/python.md for instructions.
import trader_pb2 as poolrpc, trader_pb2_grpc as traderstub
GRPC_HOST = 'localhost:12010'
MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
TLS_PATH = 'POOL_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 = traderstub.TraderStub(channel)
request = poolrpc.WithdrawAccountRequest(
trader_key=<bytes>,
outputs=<Output>,
fee_rate_sat_per_kw=<uint64>,
absolute_expiry=<uint32>,
relative_expiry=<uint32>,
new_version=<AccountVersion>,
)
response = stub.WithdrawAccount(request)
print(response)
# {
# "account": <Account>,
# "withdraw_txid": <bytes>,
# }
- Javascript
- Python
const fs = require('fs');
const request = require('request');
const REST_HOST = 'localhost:8281'
const MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
let requestBody = {
trader_key: <string>, // <bytes> (base64 encoded)
outputs: <array>, // <Output>
fee_rate_sat_per_kw: <string>, // <uint64>
absolute_expiry: <integer>, // <uint32>
relative_expiry: <integer>, // <uint32>
new_version: <string>, // <AccountVersion>
};
let options = {
url: `https://${REST_HOST}/v1/pool/accounts/withdraw`,
// 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:
// {
// "account": <object>, // <Account>
// "withdraw_txid": <string>, // <bytes>
// }
import base64, codecs, json, requests
REST_HOST = 'localhost:8281'
MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
TLS_PATH = 'POOL_DIR/tls.cert'
url = f'https://{REST_HOST}/v1/pool/accounts/withdraw'
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
headers = {'Grpc-Metadata-macaroon': macaroon}
data = {
'trader_key': base64.b64encode(<bytes>),
'outputs': <Output>,
'fee_rate_sat_per_kw': <uint64>,
'absolute_expiry': <uint32>,
'relative_expiry': <uint32>,
'new_version': <AccountVersion>,
}
r = requests.post(url, headers=headers, data=json.dumps(data), verify=TLS_PATH)
print(r.json())
# {
# "account": <Account>,
# "withdraw_txid": <bytes>,
# }
$ pool accounts withdraw --help
NAME:
pool accounts withdraw - withdraw funds from an existing account
USAGE:
pool accounts withdraw [command options] trader_key amt addr sat_per_vbyte
DESCRIPTION:
Withdraw funds from an existing account to a supported address.
OPTIONS:
--trader_key value the hex-encoded trader key of the account to withdraw funds from
--addr value the address the withdrawn funds should go to
--amt value the amount that will be sent to the address and withdrawn from the account (default: 0)
--sat_per_vbyte value the fee rate expressed in sat/vbyte that should be used for the withdrawal (default: 0)
--expiry_height value the new block height which this account should expire at (default: 0)
--expiry_blocks value the new relative height (from the current chain height) that the account should expire at (default: 0)
--new_version value the new account version to use; version 0 means auto-decide dependent on lnd version; version 1 is a p2wsh account while version 2 is a p2tr account; version 2 requires lnd 0.15 or later (default: 0)
Messages
poolrpc.WithdrawAccountRequest
Source: poolrpc/trader.proto
Field | gRPC Type | REST Type | REST Placement |
---|---|---|---|
trader_key | bytes | string | body |
outputs | Output[] | array | body |
fee_rate_sat_per_kw | uint64 | string | body |
absolute_expiry | uint32 | integer | body |
relative_expiry | uint32 | integer | body |
new_version | AccountVersion | string | body |
poolrpc.WithdrawAccountResponse
Source: poolrpc/trader.proto
Field | gRPC Type | REST Type |
---|---|---|
account | Account | object |
withdraw_txid | bytes | string |
Nested Messages
poolrpc.Account
Field | gRPC Type | REST Type |
---|---|---|
trader_key | bytes | string |
outpoint | OutPoint | object |
value | uint64 | string |
available_balance | uint64 | string |
expiration_height | uint32 | integer |
state | AccountState | string |
latest_txid | bytes | string |
version | AccountVersion | string |
poolrpc.OutPoint
Field | gRPC Type | REST Type |
---|---|---|
txid | bytes | string |
output_index | uint32 | integer |
poolrpc.Output
Field | gRPC Type | REST Type |
---|---|---|
value_sat | uint64 | string |
address | string | string |
Enums
poolrpc.AccountState
Name | Number |
---|---|
PENDING_OPEN | 0 |
PENDING_UPDATE | 1 |
OPEN | 2 |
EXPIRED | 3 |
PENDING_CLOSED | 4 |
CLOSED | 5 |
RECOVERY_FAILED | 6 |
PENDING_BATCH | 7 |
poolrpc.AccountVersion
Name | Number |
---|---|
ACCOUNT_VERSION_LND_DEPENDENT | 0 |
ACCOUNT_VERSION_LEGACY | 1 |
ACCOUNT_VERSION_TAPROOT | 2 |
ACCOUNT_VERSION_TAPROOT_V2 | 3 |