您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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