Skip to main content

AccountModificationFees

AccountModificationFees returns a map from account key to an ordered list of account action modification fees.

Source: poolrpc/trader.proto

gRPC

rpc AccountModificationFees (AccountModificationFeesRequest) returns (AccountModificationFeesResponse);

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 = {};
client.accountModificationFees(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "accounts": <AccountsEntry>,
// }

Messages

poolrpc.AccountModificationFeesRequest

Source: poolrpc/trader.proto

note

This request has no parameters.

poolrpc.AccountModificationFeesResponse

Source: poolrpc/trader.proto

FieldgRPC TypeREST Type
accounts
AccountsEntry[]object

Nested Messages

poolrpc.AccountModificationFee

FieldgRPC TypeREST Type
action
stringstring
txid
stringstring
block_height
int32integer
timestamp
int64string
output_amount
int64string
fee_null
boolboolean
fee_value
int64string

poolrpc.AccountModificationFeesResponse.AccountsEntry

FieldgRPC TypeREST Type
key
stringunknown
value
ListOfAccountModificationFeesunknown

poolrpc.ListOfAccountModificationFees

FieldgRPC TypeREST Type
modification_fees
AccountModificationFee[]array