1515*/
1616
1717export interface StellarFee {
18- " last_ledger" : string ,
19- " last_ledger_base_fee" : string ,
20- " ledger_capacity_usage" : string ,
21- " min_accepted_fee" : string ,
22- " mode_accepted_fee" : string ,
23- " p10_accepted_fee" : string ,
24- " p20_accepted_fee" : string ,
25- " p30_accepted_fee" : string ,
26- " p40_accepted_fee" : string ,
27- " p50_accepted_fee" : string ,
28- " p60_accepted_fee" : string ,
29- " p70_accepted_fee" : string ,
30- " p80_accepted_fee" : string ,
31- " p90_accepted_fee" : string ,
32- " p95_accepted_fee" : string ,
33- " p99_accepted_fee" : string ,
34- " fee_charged" : FeeState ,
35- " max_fee" : FeeState
18+ last_ledger : string ,
19+ last_ledger_base_fee : string ,
20+ ledger_capacity_usage : string ,
21+ min_accepted_fee : string ,
22+ mode_accepted_fee : string ,
23+ p10_accepted_fee : string ,
24+ p20_accepted_fee : string ,
25+ p30_accepted_fee : string ,
26+ p40_accepted_fee : string ,
27+ p50_accepted_fee : string ,
28+ p60_accepted_fee : string ,
29+ p70_accepted_fee : string ,
30+ p80_accepted_fee : string ,
31+ p90_accepted_fee : string ,
32+ p95_accepted_fee : string ,
33+ p99_accepted_fee : string ,
34+ fee_charged : FeeState ,
35+ max_fee : FeeState
3636}
3737
3838export interface StellarAccountInfo {
@@ -51,84 +51,84 @@ export interface StellarAccountInfo {
5151}
5252
5353export interface StellarTransactionResponse {
54- " transactions" : StellarTransaction [ ] ,
55- " nextPageCursor" : string ,
56- " prevPageCursor" : string
54+ transactions : StellarTransaction [ ] ,
55+ nextPageCursor : string ,
56+ prevPageCursor : string
5757}
5858
5959export interface StellarTransaction {
60- " hash" : string ,
61- " ledger" : number ,
62- " created_at" : string ,
63- " source_account" : string ,
64- " fee_account" : string ,
65- " successful" : boolean ,
66- " paging_token" : string ,
67- " source_account_sequence" : number ,
68- " fee_charged" : number ,
69- " max_fee" : number ,
70- " operation_count" : number ,
71- " envelope_xdr" : string ,
72- " result_xdr" : string ,
73- " result_meta_xdr" : string ,
74- " signatures" : string [ ] ,
75- " fee_bump_transaction" : FeeBumpTransaction ,
76- " inner_transaction" : InnerTransaction ,
77- " memo_type" : string ,
78- " memo" : string ,
79- " memo_bytes" : string
60+ hash : string ,
61+ ledger : number ,
62+ created_at : string ,
63+ source_account : string ,
64+ fee_account : string ,
65+ successful : boolean ,
66+ paging_token : string ,
67+ source_account_sequence : number ,
68+ fee_charged : number ,
69+ max_fee : number ,
70+ operation_count : number ,
71+ envelope_xdr : string ,
72+ result_xdr : string ,
73+ result_meta_xdr : string ,
74+ signatures : string [ ] ,
75+ fee_bump_transaction : FeeBumpTransaction ,
76+ inner_transaction : InnerTransaction ,
77+ memo_type : string ,
78+ memo : string ,
79+ memo_bytes : string
8080}
8181
8282export interface StellarTransactionOperationResponse {
83- " operations" : StellarTransactionOperation [ ] ,
84- " nextPageCursor" : string ,
85- " prevPageCursor" : string
83+ operations : StellarTransactionOperation [ ] ,
84+ nextPageCursor : string ,
85+ prevPageCursor : string
8686}
8787
8888export interface StellarTransactionOperation {
89- "id" : number ,
90- " source_account" : string ,
91- " paging_token" : string ,
92- " type" : string ,
93- " type_i" : number ,
94- " created_at" : string ,
95- " transaction_hash" : string ,
96- " transaction_successful" : boolean
97- " asset_type" : string ,
98- " from" : string ,
99- "to" : string ,
100- " amount" : string ,
101- " name" : string ,
102- " value" : string ,
103- " funder" : string ,
104- " account" : string ,
105- " starting_balance" : string
89+ id : number ,
90+ source_account : string ,
91+ paging_token : string ,
92+ type : string ,
93+ type_i : number ,
94+ created_at : string ,
95+ transaction_hash : string ,
96+ transaction_successful : boolean
97+ asset_type : string ,
98+ from : string ,
99+ to : string ,
100+ amount : string ,
101+ name : string ,
102+ value : string ,
103+ funder : string ,
104+ account : string ,
105+ starting_balance : string
106106}
107107
108108interface FeeState {
109- " max" : string ;
110- " min" : string ;
111- " mode" : string ;
112- " p10" : string ;
113- " p20" : string ;
114- " p30" : string ;
115- " p40" : string ;
116- " p50" : string ;
117- " p60" : string ;
118- " p70" : string ;
119- " p80" : string ;
120- " p90" : string ;
121- " p95" : string ;
122- " p99" : string ;
109+ max : string ;
110+ min : string ;
111+ mode : string ;
112+ p10 : string ;
113+ p20 : string ;
114+ p30 : string ;
115+ p40 : string ;
116+ p50 : string ;
117+ p60 : string ;
118+ p70 : string ;
119+ p80 : string ;
120+ p90 : string ;
121+ p95 : string ;
122+ p99 : string ;
123123}
124124
125125export interface FeeBumpTransaction {
126- " hash" : string ,
126+ hash : string ,
127127 signatures : string [ ]
128128}
129129
130130export interface InnerTransaction {
131- " hash" : string ,
131+ hash : string ,
132132 signatures : string ,
133133 max_fee : number
134134}
0 commit comments