You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

accountCurrencies.d.ts 598B

12345678910111213141516171819
  1. import { LedgerIndex } from '../common';
  2. import { BaseRequest, BaseResponse } from './baseMethod';
  3. export interface AccountCurrenciesRequest extends BaseRequest {
  4. command: 'account_currencies';
  5. account: string;
  6. ledger_hash?: string;
  7. ledger_index?: LedgerIndex;
  8. strict?: boolean;
  9. }
  10. export interface AccountCurrenciesResponse extends BaseResponse {
  11. result: {
  12. ledger_hash?: string;
  13. ledger_index: number;
  14. receive_currencies: string[];
  15. send_currencies: string[];
  16. validated: boolean;
  17. };
  18. }
  19. //# sourceMappingURL=accountCurrencies.d.ts.map