Skip to main content

InitAccount

InitAccount creates a new account with the requested size and expiration, funding it from the wallet of the connected lnd node.

Source: poolrpc/trader.proto

gRPC

rpc InitAccount (InitAccountRequest) returns (Account);

REST

HTTP MethodPath
POST /v1/pool/accounts

Code Samples

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 = {
account_value: <uint64>,
absolute_height: <uint32>,
relative_height: <uint32>,
conf_target: <uint32>,
fee_rate_sat_per_kw: <uint64>,
initiator: <string>,
version: <AccountVersion>,
};
client.initAccount(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "trader_key": <bytes>,
// "outpoint": <OutPoint>,
// "value": <uint64>,
// "available_balance": <uint64>,
// "expiration_height": <uint32>,
// "state": <AccountState>,
// "latest_txid": <bytes>,
// "version": <AccountVersion>,
// }

Messages

poolrpc.InitAccountRequest

Source: poolrpc/trader.proto

FieldgRPC TypeREST TypeREST Placement
account_value
uint64stringbody
absolute_height
uint32integerbody
relative_height
uint32integerbody
conf_target
uint32integerbody
fee_rate_sat_per_kw
uint64stringbody
initiator
stringstringbody
version
AccountVersionstringbody

poolrpc.Account

Source: poolrpc/trader.proto

FieldgRPC TypeREST Type
trader_key
bytesstring
outpoint
OutPointobject
value
uint64string
available_balance
uint64string
expiration_height
uint32integer
state
AccountStatestring
latest_txid
bytesstring
version
AccountVersionstring

Nested Messages

poolrpc.OutPoint

FieldgRPC TypeREST Type
txid
bytesstring
output_index
uint32integer

Enums

poolrpc.AccountState

NameNumber
PENDING_OPEN
0
PENDING_UPDATE
1
OPEN
2
EXPIRED
3
PENDING_CLOSED
4
CLOSED
5
RECOVERY_FAILED
6
PENDING_BATCH
7

poolrpc.AccountVersion

NameNumber
ACCOUNT_VERSION_LND_DEPENDENT
0
ACCOUNT_VERSION_LEGACY
1
ACCOUNT_VERSION_TAPROOT
2
ACCOUNT_VERSION_TAPROOT_V2
3