Skip to main content

CreditAccount

CreditAccount increases the balance of an existing account in the account database.

Source: lit-accounts.proto

gRPC

rpc CreditAccount (CreditAccountRequest) returns (CreditAccountResponse);

REST

HTTP MethodPath
POST /v1/accounts/credit/{account.id}

Code Samples

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:8443'
const MACAROON_PATH = 'LIT_DIR/regtest/lit.macaroon'
const TLS_PATH = 'LIT_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lit-accounts.proto', loaderOptions);
const litrpc = grpc.loadPackageDefinition(packageDefinition).litrpc;
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 litrpc.Accounts(GRPC_HOST, creds);
let request = {
account: <AccountIdentifier>,
amount: <uint64>,
};
client.creditAccount(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "account": <Account>,
// }

Messages

litrpc.CreditAccountRequest

Source: lit-accounts.proto

FieldgRPC TypeREST TypeREST Placement
account
AccountIdentifierobjectpath
amount
uint64unknownbody

litrpc.CreditAccountResponse

Source: lit-accounts.proto

FieldgRPC TypeREST Type
account
Accountobject

Nested Messages

litrpc.Account

FieldgRPC TypeREST Type
id
stringstring
initial_balance
uint64string
current_balance
int64string
last_update
int64string
expiration_date
int64string
invoices
AccountInvoice[]array
payments
AccountPayment[]array
label
stringstring

litrpc.AccountIdentifier

FieldgRPC TypeREST Type
id
stringstring
label
stringstring

litrpc.AccountInvoice

FieldgRPC TypeREST Type
hash
bytesstring

litrpc.AccountPayment

FieldgRPC TypeREST Type
hash
bytesstring
state
stringstring
full_amount
int64string