-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathChainController.php
360 lines (336 loc) · 8.97 KB
/
ChainController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php
namespace BlockMatrix\EosRpc;
use BlockMatrix\EosRpc\Adapter\Http\HttpInterface;
use BlockMatrix\EosRpc\Adapter\Settings\SettingsInterface;
/**
* Class ChainController
*
* Access the various API methods in the Chain API.
*
* See https://eosio.github.io/eos/group__eosiorpc.html for more details
*/
class ChainController
{
/**
* @var SettingsInterface
*/
protected $settings;
/**
* @var HttpInterface
*/
protected $client;
/**
* @var string
*/
protected $version = 'v1';
/**
* ChainController constructor.
*
* @param SettingsInterface $settings
* @param HttpInterface $client
*/
public function __construct(SettingsInterface $settings, HttpInterface $client)
{
$this->settings = $settings;
$this->client = $client;
}
/**
* Build the URI
*
* @param $endpoint
*
* @return string
*/
protected function buildUrl($endpoint): string
{
return $this->settings->rpcNode() . '/' . $this->version . $endpoint;
}
/**
* Get latest information related to a node
*
* @return string
*/
public function getInfo(): string
{
return $this->client->get($this->buildUrl('/chain/get_info'));
}
/**
* Get information related to a block
*
* mixed $id Block num or id
*
* @param mixed $id
* @return string
*/
public function getBlock($id): string
{
return $this->client->post(
$this->buildUrl('/chain/get_block'),
['block_num_or_id' => $id]
);
}
/**
* Get actions related to an account
*
* string $account_name Account name to query
* int $pos Position in action log
* int $offset Offset in action log
*
* @param string $account_name
* @param int $pos
* @param int $offset
* @return string
*/
public function getActions($account_name, $pos, $offset): string
{
return $this->client->post(
$this->buildUrl('/history/get_actions'),
['account_name' => $account_name, 'pos' => $pos, 'offset' => $offset]
);
}
/**
* Get information related to a block header state
*
* mixed $id Block num or id
*
* @param mixed $id
* @return string
*/
public function getBlockHeaderState($id): string
{
return $this->client->post(
$this->buildUrl('/chain/get_block_header_state'),
['block_num_or_id' => $id]
);
}
/**
* Get information related to an account
*
* string $name Account name
*
* @return string
*/
public function getAccount(string $name): string
{
return $this->client->post(
$this->buildUrl('/chain/get_account'),
['account_name' => $name]
);
}
/**
* Get account abi
*
* string $name Account name
*
* @return string
*/
public function getAbi(string $name): string
{
return $this->client->post(
$this->buildUrl('/chain/get_abi'),
['account_name' => $name]
);
}
/**
* Fetch smart contract code
*
* string $name Name
*
* @return string
*/
public function getCode(string $name, ?bool $code_as_wasm = false): string
{
return $this->client->post(
$this->buildUrl('/chain/get_code'),
[
'account_name' => $name
] + ($code_as_wasm ? ['code_as_wasm' => $code_as_wasm] : [])
);
}
/**
* Get raw code and abi
*
* string $name Name
*
* @return string
*/
public function getRawCodeAndAbi(string $name): string
{
return $this->client->post(
$this->buildUrl('/chain/get_raw_code_and_abi'),
['account_name' => $name]
);
}
/**
* Fetch smart contract data from an account
*
* @param string $scope
* @param string $code
* @param string $table
* @param array $extra An optional array of additional parameters to add, such as `limit`
*
* @return string
*/
public function getTableRows(string $scope, string $code, string $table, array $extra = []): string
{
return $this->client->post(
$this->buildUrl('/chain/get_table_rows'),
[
'scope' => $scope,
'code' => $code,
'table' => $table,
'json' => true,
] + $extra
);
}
/**
* Get the currency balance for a defined account
*
* @param string $code
* @param string $account
* @param null|string $symbol Optional filter currency symbol
*
* @return string
*/
public function getCurrencyBalance(string $code, string $account, ?string $symbol = null): string
{
return $this->client->post(
$this->buildUrl('/chain/get_currency_balance'),
[
'code' => $code,
'account' => $account,
] + ($symbol ? ['symbol' => $symbol] : [])
);
}
/**
* Get currency stats
*
* @param string $code
* @param string $symbol
*
* @return string
*/
public function getCurrencyStats(string $code, string $symbol): string
{
return $this->client->post(
$this->buildUrl('/chain/get_currency_stats'),
[
'code' => $code,
'symbol' => $symbol,
]
);
}
/**
* Get registered producers
*
* @param int $limit Optional pagination limit
* @param string|null $lowerBound Optional producer account name to control pagination
*
* @return string
*/
public function getProducers(int $limit = 10, ?string $lowerBound = null): string
{
return $this->client->post(
$this->buildUrl('/chain/get_producers'),
[
'limit' => $limit,
'json' => true
] + ($lowerBound ? ['lower_bound' => $lowerBound] : [])
);
}
/**
* Serialize json to binary hex
* The resulting binary hex is usually used for the data field in push_transaction
*
* @param string $code
* @param string $action
* @param array $args
*
* @return string
*/
public function abiJsonToBin(string $code, string $action, array $args): string
{
return $this->client->post(
$this->buildUrl('/chain/abi_json_to_bin'),
[
'code' => $code,
'action' => $action,
'args' => $args,
]
);
}
/**
* Serialize back binary hex to json
*
* @param string $code
* @param string $action
* @param string $binArgs
*
* @return string
*/
public function abiBinToJson(string $code, string $action, string $binArgs): string
{
return $this->client->post(
$this->buildUrl('/chain/abi_bin_to_json'),
[
'code' => $code,
'action' => $action,
'binargs' => $binArgs,
]
);
}
/**
* Get the required keys needed to sign a transaction
*
* @param string $transaction
* @param array $available_keys
*
* @return string
*/
public function getRequiredKeys(array $transaction, array $available_keys): string
{
return $this->client->post(
$this->buildUrl('/chain/get_required_keys'),
[
'transaction' => $transaction,
'available_keys' => $available_keys,
]
);
}
/**
* Push a transaction
*
* @param string $expiration
* @param string $ref_block_num
* @param string $ref_block_prefix
* @param array $extra An optional array of additional parameters to add
*
* @return string
*/
public function pushTransaction(string $expiration, string $ref_block_num, string $ref_block_prefix,
array $extra = []): string
{
return $this->client->post(
$this->buildUrl('/chain/push_transaction'),
[
'compression' => 'none',
'transaction' => [
'expiration' => $expiration,
'ref_block_num' => $ref_block_num,
'ref_block_prefix' => $ref_block_prefix,
'context_free_actions' => [],
'actions' => $extra['actions'],
'transaction_extensions' => [],
],
'signatures' => $extra['signatures']
]
);
}
public function pushTransactions(array $body): string
{
return $this->client->post(
$this->buildUrl('/chain/push_transactions'),
$body
);
}
}