mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 12:15:51 +00:00
Rewrite XrplClient.request and general cleanup (#1519)
* first attempt at overloading * fix TS issues * improve connection typing * more cleanup * edit all ledger files * more renames * fix all other request calls * clean up serverinfo * fixes more request calls * remove old legacy browser stuff * remove unused types * remove exports from objects * add type to method signatures * add ledger requests * fix most tests * comment out formatBidsAndAsks * fix proxy test * comment out failing tests * move client-related files into client * add payment channel requests * fix imports * remove finished TODOs * fix tests * fix integ tests * remove exported types * better ci
This commit is contained in:
@@ -6,8 +6,8 @@ parseAccountFlags()
|
||||
|
||||
async function parseAccountFlags() {
|
||||
await client.connect()
|
||||
const account_info = await client.request('account_info', {account: 'rKsdkGhyZH6b2Zzd5hNnEqSv2wpznn4n6N'})
|
||||
const flags = client.parseAccountFlags(account_info.account_data.Flags)
|
||||
const account_info = await client.request({command: 'account_info', account: 'rKsdkGhyZH6b2Zzd5hNnEqSv2wpznn4n6N'})
|
||||
const flags = client.parseAccountFlags(account_info.result.account_data.Flags)
|
||||
console.log(JSON.stringify(flags, null, 2))
|
||||
process.exit(0)
|
||||
}
|
||||
|
||||
@@ -73,10 +73,11 @@ async function performPayments(payments) {
|
||||
|
||||
for (let i = 0; i < payments.length; i++) {
|
||||
const payment = payments[i]
|
||||
const account_info: AccountInfoResponse = await client.request('account_info', {
|
||||
const account_info: AccountInfoResponse = await client.request({
|
||||
command: 'account_info',
|
||||
account: payment.source.classicAddress,
|
||||
ledger_index: 'current'})
|
||||
const sequence = account_info.account_data.Sequence
|
||||
const sequence = account_info.result.account_data.Sequence
|
||||
const preparedPayment = await client.preparePayment(payment.source.classicAddress, {
|
||||
source: {
|
||||
address: payment.source.classicAddress,
|
||||
|
||||
Reference in New Issue
Block a user