@bitgo/sdk-coin-eos 3.5.2 → 3.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,317 @@
1
+ export declare const EosResponses: {
2
+ readonly getAccountResponseSuccess1: {
3
+ status: number;
4
+ body: {
5
+ head_block_num: number;
6
+ head_block_time: string;
7
+ privileged: boolean;
8
+ last_code_update: string;
9
+ created: string;
10
+ core_liquid_balance: string;
11
+ ram_quota: number;
12
+ net_weight: number;
13
+ cpu_weight: number;
14
+ net_limit: {
15
+ used: number;
16
+ available: number;
17
+ max: number;
18
+ };
19
+ cpu_limit: {
20
+ used: number;
21
+ available: number;
22
+ max: number;
23
+ };
24
+ ram_usage: number;
25
+ permissions: {
26
+ perm_name: string;
27
+ parent: string;
28
+ required_auth: {
29
+ threshold: number;
30
+ keys: {
31
+ key: string;
32
+ weight: number;
33
+ }[];
34
+ accounts: never[];
35
+ waits: never[];
36
+ };
37
+ }[];
38
+ total_resources: {
39
+ owner: string;
40
+ net_weight: string;
41
+ cpu_weight: string;
42
+ ram_bytes: number;
43
+ };
44
+ self_delegated_bandwidth: null;
45
+ refund_request: null;
46
+ voter_info: null;
47
+ rex_info: null;
48
+ subjective_cpu_bill_limit: {
49
+ used: number;
50
+ available: number;
51
+ max: number;
52
+ };
53
+ };
54
+ };
55
+ readonly getAccountResponseSuccess2: {
56
+ status: number;
57
+ body: {
58
+ account_name: string;
59
+ head_block_num: number;
60
+ head_block_time: string;
61
+ privileged: boolean;
62
+ last_code_update: string;
63
+ created: string;
64
+ ram_quota: number;
65
+ net_weight: number;
66
+ cpu_weight: number;
67
+ net_limit: {
68
+ used: number;
69
+ available: number;
70
+ max: number;
71
+ };
72
+ cpu_limit: {
73
+ used: number;
74
+ available: number;
75
+ max: number;
76
+ };
77
+ ram_usage: number;
78
+ permissions: {
79
+ perm_name: string;
80
+ parent: string;
81
+ required_auth: {
82
+ threshold: number;
83
+ keys: {
84
+ key: string;
85
+ weight: number;
86
+ }[];
87
+ accounts: never[];
88
+ waits: never[];
89
+ };
90
+ }[];
91
+ total_resources: {
92
+ owner: string;
93
+ net_weight: string;
94
+ cpu_weight: string;
95
+ ram_bytes: number;
96
+ };
97
+ self_delegated_bandwidth: null;
98
+ refund_request: null;
99
+ voter_info: null;
100
+ rex_info: null;
101
+ subjective_cpu_bill_limit: {
102
+ used: number;
103
+ available: number;
104
+ max: number;
105
+ };
106
+ };
107
+ };
108
+ readonly getInfoResponseSuccess1: {
109
+ status: number;
110
+ body: {
111
+ server_version: string;
112
+ chain_id: string;
113
+ head_block_num: number;
114
+ last_irreversible_block_num: number;
115
+ last_irreversible_block_id: string;
116
+ head_block_id: string;
117
+ head_block_time: string;
118
+ head_block_producer: string;
119
+ virtual_block_cpu_limit: number;
120
+ virtual_block_net_limit: number;
121
+ block_cpu_limit: number;
122
+ block_net_limit: number;
123
+ server_version_string: string;
124
+ fork_db_head_block_num: number;
125
+ fork_db_head_block_id: string;
126
+ server_full_version_string: string;
127
+ };
128
+ };
129
+ readonly getBlockResponseSuccess1: {
130
+ status: number;
131
+ body: {
132
+ timestamp: string;
133
+ producer: string;
134
+ confirmed: number;
135
+ previous: string;
136
+ transaction_mroot: string;
137
+ action_mroot: string;
138
+ schedule_version: number;
139
+ new_producers: null;
140
+ producer_signature: string;
141
+ transactions: never[];
142
+ id: string;
143
+ block_num: number;
144
+ ref_block_prefix: number;
145
+ };
146
+ };
147
+ readonly explainTransactionOutputNative: {
148
+ displayOrder: string[];
149
+ id: string;
150
+ changeOutputs: never[];
151
+ outputAmount: string;
152
+ changeAmount: number;
153
+ outputs: {
154
+ address: string;
155
+ amount: string;
156
+ }[];
157
+ fee: {};
158
+ memo: string;
159
+ proxy: undefined;
160
+ producers: undefined;
161
+ };
162
+ readonly explainTransactionOutputChex: {
163
+ displayOrder: string[];
164
+ id: string;
165
+ changeOutputs: never[];
166
+ outputAmount: string;
167
+ changeAmount: number;
168
+ outputs: {
169
+ address: string;
170
+ amount: string;
171
+ }[];
172
+ fee: {};
173
+ memo: string;
174
+ proxy: undefined;
175
+ producers: undefined;
176
+ };
177
+ readonly explainUnstakeOutput1: {
178
+ displayOrder: string[];
179
+ id: string;
180
+ changeOutputs: never[];
181
+ outputAmount: string;
182
+ changeAmount: number;
183
+ outputs: {
184
+ address: string;
185
+ amount: string;
186
+ }[];
187
+ fee: {};
188
+ memo: undefined;
189
+ proxy: undefined;
190
+ producers: undefined;
191
+ };
192
+ readonly explainUnstakeOutput2: {
193
+ displayOrder: string[];
194
+ id: string;
195
+ changeOutputs: never[];
196
+ outputAmount: string;
197
+ changeAmount: number;
198
+ outputs: {
199
+ address: string;
200
+ amount: string;
201
+ }[];
202
+ fee: {};
203
+ memo: undefined;
204
+ proxy: undefined;
205
+ producers: undefined;
206
+ };
207
+ readonly explainRefundOutput: {
208
+ displayOrder: string[];
209
+ id: string;
210
+ changeOutputs: never[];
211
+ outputAmount: string;
212
+ changeAmount: number;
213
+ outputs: {
214
+ address: string;
215
+ amount: string;
216
+ }[];
217
+ fee: {};
218
+ memo: undefined;
219
+ proxy: undefined;
220
+ producers: undefined;
221
+ };
222
+ };
223
+ export declare const EosInputs: {
224
+ readonly explainTransactionInputChex: {
225
+ headers: {
226
+ ref_block_prefix: number;
227
+ ref_block_num: number;
228
+ expiration: string;
229
+ };
230
+ transaction: {
231
+ packed_trx: string;
232
+ };
233
+ };
234
+ readonly explainTransactionInputNative: {
235
+ headers: {
236
+ ref_block_prefix: number;
237
+ ref_block_num: number;
238
+ expiration: string;
239
+ };
240
+ transaction: {
241
+ packed_trx: string;
242
+ };
243
+ };
244
+ readonly explainUnstakeInput1: {
245
+ headers: {
246
+ ref_block_prefix: number;
247
+ ref_block_num: number;
248
+ expiration: string;
249
+ };
250
+ transaction: {
251
+ packed_trx: string;
252
+ };
253
+ };
254
+ readonly explainUnstakeInput2: {
255
+ headers: {
256
+ ref_block_prefix: number;
257
+ ref_block_num: number;
258
+ expiration: string;
259
+ };
260
+ transaction: {
261
+ packed_trx: string;
262
+ };
263
+ };
264
+ readonly explainRefundInput: {
265
+ headers: {
266
+ ref_block_prefix: number;
267
+ ref_block_num: number;
268
+ expiration: string;
269
+ };
270
+ transaction: {
271
+ packed_trx: string;
272
+ };
273
+ };
274
+ readonly unsignedTransaction: {
275
+ recipients: {
276
+ amount: string;
277
+ address: string;
278
+ recipientLabel: null;
279
+ memo: {
280
+ type: string;
281
+ value: string;
282
+ };
283
+ }[];
284
+ headers: {
285
+ expiration: string;
286
+ ref_block_num: number;
287
+ ref_block_prefix: number;
288
+ };
289
+ txHex: string;
290
+ transaction: {
291
+ compression: string;
292
+ packed_trx: string;
293
+ signatures: never[];
294
+ };
295
+ txid: string;
296
+ walletId: string;
297
+ amount: string;
298
+ address: string;
299
+ receivedCoin: {
300
+ name: string;
301
+ svg: string;
302
+ modifier: number;
303
+ modifierExp: number;
304
+ fullDisplay: string;
305
+ shortDisplay: string;
306
+ hasMarketData: boolean;
307
+ walletCreationPolling: boolean;
308
+ };
309
+ coin: string;
310
+ memo: {
311
+ type: string;
312
+ value: string;
313
+ };
314
+ };
315
+ readonly string257CharsLong: "4WMNlu0fFU8N94AwukfpfPPQn2Myo80JdmLNF5rgeKAab9XLD93KUQipcT6US0LRwWWIGbUt89fjmdwpg3CBklNi8QIeBI2i8UDJCEuQKYobR5m4ismm1RooTXUnw5OPjmfLuuajYV4e5cS1jpC6hez5X43PZ5SsGaHNYX2YYXY03ir54cWWx5QW5VCPKPKUzfq2UYK5fjAG2Fe3xCUOzqgoR6KaAiuOOnDSyhZygLJyaoJpOXZM9olblNtAW75Ed";
316
+ };
317
+ //# sourceMappingURL=fixtures.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fixtures.d.ts","sourceRoot":"","sources":["../../test/fixtures.ts"],"names":[],"mappings":"AAuXA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUf,CAAC;AAKX,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQZ,CAAC"}