libra-grpc v 0.07 (latest)
const client = new libra.Client('ac.testnet.libra.org:8000');
const test = async () => {
/** Get account state */
/** Get transactions */
params = {
start_version: 1,
limit: 10,
fetch_events: true,
};
client.request('get_transactions', params).then(transactions => {
console.log('Transactions', transactions);
});
}
Results: `AssertionError: Failure: Invalid wire type: 7 (at position 133)`
How can I fix it? Or can you advise another lib for node.js?