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.

fee.d.ts 753B

1234567891011121314151617181920212223242526
  1. import { BaseRequest, BaseResponse } from './baseMethod';
  2. export interface FeeRequest extends BaseRequest {
  3. command: 'fee';
  4. }
  5. export interface FeeResponse extends BaseResponse {
  6. result: {
  7. current_ledger_size: string;
  8. current_queue_size: string;
  9. drops: {
  10. base_fee: string;
  11. median_fee: string;
  12. minimum_fee: string;
  13. open_ledger_fee: string;
  14. };
  15. expected_ledger_size: string;
  16. ledger_current_index: number;
  17. levels: {
  18. median_level: string;
  19. minimum_level: string;
  20. open_ledger_level: string;
  21. reference_level: string;
  22. };
  23. max_queue_size: string;
  24. };
  25. }
  26. //# sourceMappingURL=fee.d.ts.map