Я создал тестовую учетную запись Ripple, используя следующую команду,
$ curl -s -X POST https://faucet.altnet.rippletest.net/accounts [введите]
{"account":{"address":"rawQ2crN1F4y1U9YfSNxdNzoHFDgahySsg",
"secret":"shy5sVYpYzQKmB5C96TZRFPDuPg8S"},
"balance":10000
}
Затем я попытался получить информацию об учетной записи, используя приведенный ниже код
'use strict';
const RippleAPI = require('ripple-lib').RippleAPI;
const api = new RippleAPI({
//server: 'wss://s1.ripple.com' // Public rippled server
//Testnet
server: 'wss://s.altnet.rippletest.net:51233'
});
api.connect().then(() => {
/* begin custom code ------------------------------------ */
//const myAddress = 'rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn';
//Testnet account created by Vikram using the command $curl -s -X POST https://faucet.altnet.rippletest.net/accounts [enter]
const myAddress = 'rawQ2crN1F4y1U9YfSNxdNzoHFDgahySsg';
console.log('getting account info for', myAddress);
return api.getAccountInfo(myAddress);
}).then(info => {
console.log(info);
console.log('getAccountInfo done');
/* end custom code -------------------------------------- */
}).then(() => {
return api.disconnect();
}).then(() => {
console.log('done and disconnected.');
}).catch(console.error);
Невозможно получить информацию об учетной записи.
Получение ошибки ниже
getting account info for rawQ2crN1F4y1U9YfSNxdNzoHFDgahySsg
[RippledError(actNotFound, { account: 'rawQ2crN1F4y1U9YfSNxdNzoHFDgahySsg',
error: 'actNotFound',
error_code: 19,
error_message: 'Account not found.',
id: 2,
ledger_hash: '1D4FE33D1A2BE23280730EB1A81224CB50DED049846AA3A880102F3BE5CE9FB9',
ledger_index: 12655931,
request:
{ account: 'rawQ2crN1F4y1U9YfSNxdNzoHFDgahySsg',
command: 'account_info',
id: 2,
ledger_index: 'validated' },
status: 'error',
type: 'response',
validated: true })]
Где я совершаю ошибку? Пожалуйста, руководство