-
Notifications
You must be signed in to change notification settings - Fork 29
618 lines (499 loc) · 28.2 KB
/
sync-apis.yaml
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
# Workflow to upload APIs to docs staging environment
name: Sync OpenAPI definition to ReadMe staging
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# This workflow contains a single job called "sync"
sync:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Setup Node.js environment
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
# Install rdme globally
- name: Install rdme
run: npm install -g [email protected]
# Update NFT API in docs
- name: GitHub action to update NFT API
uses: readmeio/[email protected]
with:
rdme: openapi nft/nfts.yaml --key=${{ secrets.README_API_KEY }} --id=62bb5f1af2192000e16f5c93
# Update Notify API in docs
- name: GitHub action to update Notify API
uses: readmeio/[email protected]
with:
rdme: openapi notify/notify.yaml --key=${{ secrets.README_API_KEY }} --id=62d74663f3ed8d0071190eb2
# Update Transfers API in docs
- name: GitHub action to update Transfers API
uses: readmeio/[email protected]
with:
rdme: openapi transfers/alchemy_getAssetTransfers.yaml --key=${{ secrets.README_API_KEY }} --id=62d75e355edcd00083b39fa2
# Update Gas Manager Admin API in docs
- name: GitHub action to update Gas Manager Admin API
uses: readmeio/[email protected]
with:
rdme: openapi account-abstraction/gas_manager_admin.yaml --key=${{ secrets.README_API_KEY }} --id=648a94b656f41511b55a453b
# =============================================================== Update Ethereum APIs in Docs ===============================================================
- name: Update Ethereum API - eth_createAccessList
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_createAccessList.yaml --key=$README_API_KEY --id=635bf940de31790f648c2218
- name: Update Ethereum API - eth_blockNumber
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_blockNumber.yaml --key=$README_API_KEY --id=62c8076fe3a26b039d30eab9
- name: Update Ethereum API - eth_call
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_call.yaml --key=$README_API_KEY --id=62cd3571d1a583001a47bb1c
- name: Update Ethereum API - eth_accounts
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_accounts.yaml --key=$README_API_KEY --id=62d54b64fcf55a002eba8d8b
- name: Update Ethereum API - eth_newFilter
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_newFilter.yaml --key=$README_API_KEY --id=62d5cc6ceb57150082e0f840
- name: Update Ethereum API - eth_feeHistory
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_feeHistory.yaml --key=$README_API_KEY --id=62d5d1235ece66005997b8b1
- name: Update Ethereum API - eth_chainId
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_chainId.yaml --key=$README_API_KEY --id=62d78929f180b60043228bf9
- name: Update Ethereum API - eth_estimateGas
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_estimateGas.yaml --key=$README_API_KEY --id=62d79a2f75cd93006588aaa5
- name: Update Ethereum API - eth_gasPrice
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_gasPrice.yaml --key=$README_API_KEY --id=62d79ad44c8825004019d4b6
- name: Update Ethereum API - eth_getBlockByHash
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBlockByHash.yaml --key=$README_API_KEY --id=62d815accbd947021ac71943
- name: Update Ethereum API - eth_getBlockTransactionCountByHash
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBlockTransactionCountByHash.yaml --key=$README_API_KEY --id=62d818045b0ac000278af0e1
- name: Update Ethereum API - eth_getBalance
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBalance.yaml --key=$README_API_KEY --id=62d81b4a604ef3008ea7167e
- name: Update Ethereum API - eth_getBlockByNumber
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBlockByNumber.yaml --key=$README_API_KEY --id=62d81ba3a8cddc001dc19c10
- name: Update Ethereum API - eth_getBlockReceipts
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBlockReceipts.yaml --key=$README_API_KEY --id=62d81bc8c50dc600524d2089
- name: Update Ethereum API - eth_getBlockTransactionCountByNumber
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getBlockTransactionCountByNumber.yaml --key=$README_API_KEY --id=62d81c425b0ac000278b6784
- name: Update Ethereum API - eth_getCode
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getCode.yaml --key=$README_API_KEY --id=62d81c65cbd947021ac7a941
- name: Update Ethereum API - eth_getFilterChanges
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getFilterChanges.yaml --key=$README_API_KEY --id=62d81c82c3d662001491b5a4
- name: Update Ethereum API - eth_getFilterLogs
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getFilterLogs.yaml --key=$README_API_KEY --id=62d81cb1c4b3800064481d2d
- name: Update Ethereum API - eth_getLogs
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getLogs.yaml --key=$README_API_KEY --id=62d831294c882500402412d6
- name: Update Ethereum API - eth_getProof
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getProof.yaml --key=$README_API_KEY --id=62d8316ba8cddc001dc32815
- name: Update Ethereum API - eth_getStorageAt
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getStorageAt.yaml --key=$README_API_KEY --id=62d83189978c0800136bc5aa
- name: Update Ethereum API - eth_getTransactionByBlockHashAndIndex
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getTransactionByBlockHashAndIndex.yaml --key=$README_API_KEY --id=62d831a48e6920009eb8f635
- name: Update Ethereum API - eth_getTransactionByHash
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getTransactionByHash.yaml --key=$README_API_KEY --id=62d832236307ee002d9b9b0a
- name: Update Ethereum API - eth_getTransactionCount
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getTransactionCount.yaml --key=$README_API_KEY --id=62d8326743c6c00037dd6155
- name: Update Ethereum API - eth_getTransactionReceipt
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getTransactionReceipt.yaml --key=$README_API_KEY --id=62d8327be856170013d6b283
- name: Update Ethereum API - eth_getUncleByBlockHashAndIndex
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getUncleByBlockHashAndIndex.yaml --key=$README_API_KEY --id=62d832c5158058012d40ea4c
- name: Update Ethereum API - eth_getUncleByBlockNumberAndIndex
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getUncleByBlockNumberAndIndex.yaml --key=$README_API_KEY --id=62d832dc15065e002ee0d85a
- name: Update Ethereum API - eth_getUncleCountByBlockHash
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getUncleCountByBlockHash.yaml --key=$README_API_KEY --id=62d832f9dcb3860058b4d99b
- name: Update Ethereum API - eth_getUncleCountByBlockNumber
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getUncleCountByBlockNumber.yaml --key=$README_API_KEY --id=62d833246307ee002d9ba6ff
- name: Update Ethereum API - eth_maxPriorityFeePerGas
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_maxPriorityFeePerGas.yaml --key=$README_API_KEY --id=62d8334b368457002f086082
- name: Update Ethereum API - eth_newBlockFilter
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_newBlockFilter.yaml --key=$README_API_KEY --id=62d833f8d2cfb500282244c5
- name: Update Ethereum API - eth_newPendingTransactionFilter
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_newPendingTransactionFilter.yaml --key=$README_API_KEY --id=62d83490c7cb6d00876164db
- name: Update Ethereum API - eth_protocolVersion
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_protocolVersion.yaml --key=$README_API_KEY --id=62d834cfbe94a1007dea9007
- name: Update Ethereum API - eth_sendRawTransaction
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_sendRawTransaction.yaml --key=$README_API_KEY --id=62d835028c633400a90fd223
- name: Update Ethereum API - eth_uninstallFilter
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_uninstallFilter.yaml --key=$README_API_KEY --id=62d835bcf25f770152c68641
- name: Update Ethereum API - net_listening
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi net_listening.yaml --key=$README_API_KEY --id=62d836535a22fd00994784a4
- name: Update Ethereum API - net_version
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi net_version.yaml --key=$README_API_KEY --id=62d8366a895f5d0014681008
- name: Update Ethereum API - web3_clientVersion
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi web3_clientVersion.yaml --key=$README_API_KEY --id=62d8367fa2d9d4001c18d733
- name: Update Ethereum API - web3_sha3
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi web3_sha3.yaml --key=$README_API_KEY --id=62d83693bf0ca1002035a814
- name: Update Ethereum API - eth_getTransactionByBlockNumberAndIndex
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./ethereum
run: rdme openapi eth_getTransactionByBlockNumberAndIndex.yaml --key=$README_API_KEY --id=62d85761c50d8b00730dc6ce
# =============================================================== Update Arbitrum APIs in Docs ===============================================================
- name: Github action to update Arbitrum API - eth_accounts
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_accounts.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d22190dfbd0013767822
- name: Github action to update Arbitrum API - eth_blockNumber
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_blockNumber.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d23ca7d4940070fb5bec
- name: Github action to update Arbitrum API - eth_call
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_call.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d7ec0e06b30029f9c72a
- name: Github action to update Arbitrum API - eth_chainId
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_chainId.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d805f01e4d002f2eaca0
- name: Github action to update Arbitrum API - eth_estimateGas
uses: readmeio/[email protected]
with:
rdme:
openapi arbitrum/eth_estimateGas.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d817f0253e00a6461eb0
- name: Github action to update Arbitrum API - eth_gasPrice
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_gasPrice.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d8328cd9e7006a42064c
- name: Github action to update Arbitrum API - eth_getBalance
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getBalance.yaml --key=${{ secrets.README_API_KEY }} --id=62d8d87c14db26001416ac63
- name: Github action to update Arbitrum API - eth_getBlockByHash
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getBlockByHash.yaml --key=${{ secrets.README_API_KEY }} --id=62d8dd027c1ba40036a5a1a1
- name: Github action to update Arbitrum API - eth_getBlockByNumber
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getBlockByNumber.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e0c7f7b6f50072597080
- name: Github action to update Arbitrum API - eth_getBlockTransactionCountByHash
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getBlockTransactionCountByHash.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e112259d7e001474c645
- name: Github action to update Arbitrum API - eth_getBlockTransactionCountByNumber
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getBlockTransactionCountByNumber.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e133efa205012a37a43a
- name: Github action to update Arbitrum API - eth_getCode
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getCode.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e15486056c003cc75375
- name: Github action to update Arbitrum API - eth_getFilterChanges
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getFilterChanges.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e17070fd50003ffbf060
- name: Github action to update Arbitrum API - eth_getFilterLogs
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getFilterLogs.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e189487ded0096d0097a
- name: Github action to update Arbitrum API - eth_getLogs
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getLogs.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e2164959b30088f11e57
- name: Github action to update Arbitrum API - eth_getStorageAt
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getStorageAt.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e22dbb9859001e90e111
- name: Github action to update Arbitrum API - eth_getTransactionByBlockHashAndIndex
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getTransactionByBlockHashAndIndex.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e2bdd94be9009bef4eb5
- name: Github action to update Arbitrum API - eth_getTransactionByBlockNumberAndIndex
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getTransactionByBlockNumberAndIndex.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e371cec32f0013dd7cd8
- name: Github action to update Arbitrum API - eth_getTransactionByHash
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getTransactionByHash.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e39187f70200a07262ff
- name: Github action to update Arbitrum API - eth_getTransactionCount
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getTransactionCount.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e3c9f2ee85023f8958f8
- name: Github action to update Arbitrum API - eth_getTransactionReceipt
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getTransactionReceipt.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e51f07a31e009a2e3b09
- name: Github action to update Arbitrum API - eth_getUncleByBlockNumberAndIndex
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getUncleByBlockNumberAndIndex.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e5eb487ded0096d0477e
- name: Github action to update Arbitrum API - eth_getUncleCountByBlockHash
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getUncleCountByBlockHash.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e60143af490013464da6
- name: Github action to update Arbitrum API - eth_getUncleCountByBlockNumber
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getUncleCountByBlockNumber.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e61470fd9d0065c98eb7
- name: Github action to update Arbitrum API - eth_newBlockFilter
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_newBlockFilter.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e63472584e002713e951
- name: Github action to update Arbitrum API - eth_newFilter
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_newFilter.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e648425369004cbbde61
- name: Github action to update Arbitrum API - eth_newPendingTransactionFilter
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_newPendingTransactionFilter.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e659137da40014f246df
- name: Github action to update Arbitrum API - eth_sendRawTransaction
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_sendRawTransaction.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e66eaefd120077ed7e44
- name: Github action to update Arbitrum API - eth_uninstallFilter
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_uninstallFilter.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e6f1496fdb0056aecb93
- name: Github action to update Arbitrum API - net_listening
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/net_listening.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e7123b4331007eb60617
- name: Github action to update Arbitrum API - net_version
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/net_version.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e72ad1ef6d002f8071c0
- name: Github action to update Arbitrum API - web3_clientVersion
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/web3_clientVersion.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e7427400e900a6471d28
- name: Github action to update Arbitrum API - web3_sha3
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/web3_sha3.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e759ebeda4004a1f51db
- name: Github action to update Arbitrum API - eth_createAccessList
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_createAccessList.yaml --key=${{ secrets.README_API_KEY }} --id=63349fdd600a95005062096d
- name: Github action to update Arbitrum API - eth_getProof
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getProof.yaml --key=${{ secrets.README_API_KEY }} --id=6334c995307ef5008a7c88b0
- name: Github action to update Arbitrum API - eth_maxPriorityFeePerGas
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_maxPriorityFeePerGas.yaml --key=${{ secrets.README_API_KEY }} --id=6334c9a19d1cf000641fef37
- name: Github action to update Arbitrum API - eth_feeHistory
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_feeHistory.yaml --key=${{ secrets.README_API_KEY }} --id=6334ca7a220b16000f3e22a5
- name: Github action to update Arbitrum API - eth_getUncleByBlockHashAndIndex
uses: readmeio/[email protected]
with:
rdme: openapi arbitrum/eth_getUncleByBlockHashAndIndex.yaml --key=${{ secrets.README_API_KEY }} --id=62d8e5c3bf6279007db52ca8
# =============================================================== Update Starknet APIs in Docs ===============================================================
- name: Github action to update Starknet API - starknet_addDeclareTransaction
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_addDeclareTransaction.yaml --key=${{ secrets.README_API_KEY }} --id=64406faac2d7740059213a4f
- name: Github action to update Starknet API - starknet_getClassAt
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getClassAt.yaml --key=${{ secrets.README_API_KEY }} --id=64406fb9107cc6000bba05e6
- name: Github action to update Starknet API - starknet_addDeployAccountTransaction
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_addDeployAccountTransaction.yaml --key=${{ secrets.README_API_KEY }} --id=64406fc2948a1600fd2a71e9
- name: Github action to update Starknet API - starknet_getClassHashAt
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getClassHashAt.yaml --key=${{ secrets.README_API_KEY }} --id=64406fcc5aba2300513dc4a3
- name: Github action to update Starknet API - starknet_addInvokeTransaction
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_addInvokeTransaction.yaml --key=${{ secrets.README_API_KEY }} --id=64406fd5d93442007209822b
- name: Github action to update Starknet API - starknet_getEvents
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getEvents.yaml --key=${{ secrets.README_API_KEY }} --id=64406fdea42c4e0388007281
- name: Github action to update Starknet API - starknet_blockHashAndNumber
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_blockHashAndNumber.yaml --key=${{ secrets.README_API_KEY }} --id=64406fe62f2152000ab80899
- name: Github action to update Starknet API - starknet_getNonce
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getNonce.yaml --key=${{ secrets.README_API_KEY }} --id=64406ff24c37de005759e380
- name: Github action to update Starknet API - starknet_blockNumber
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_blockNumber.yaml --key=${{ secrets.README_API_KEY }} --id=64406ffbb5b2f3001896e55c
- name: Github action to update Starknet API - starknet_getStateUpdate
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getStateUpdate.yaml --key=${{ secrets.README_API_KEY }} --id=6440700945a039000b1c7b77
- name: Github action to update Starknet API - starknet_call
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_call.yaml --key=${{ secrets.README_API_KEY }} --id=6440701f1a55e800650d3154
- name: Github action to update Starknet API - starknet_getStorageAt
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getStorageAt.yaml --key=${{ secrets.README_API_KEY }} --id=64407029b5b2f3001896e573
- name: Github action to update Starknet API - starknet_chainId
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_chainId.yaml --key=${{ secrets.README_API_KEY }} --id=64407032cf71a9000b56596b
- name: Github action to update Starknet API - starknet_getTransactionByBlockIdAndIndex
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getTransactionByBlockIdAndIndex.yaml --key=${{ secrets.README_API_KEY }} --id=6440703ce36444000acefc9f
- name: Github action to update Starknet API - starknet_estimateFee
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_estimateFee.yaml --key=${{ secrets.README_API_KEY }} --id=64407047f394f20035ef654d
- name: Github action to update Starknet API - starknet_estimateMessageFee
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_estimateMessageFee.yaml --key=${{ secrets.README_API_KEY }} --id=64f9010bfa510100197068b2
- name: Github action to update Starknet API - starknet_getTransactionByHash
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getTransactionByHash.yaml --key=${{ secrets.README_API_KEY }} --id=6440705395b4ba007aca6b29
- name: Github action to update Starknet API - starknet_getBlockTransactionCount
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getBlockTransactionCount.yaml --key=${{ secrets.README_API_KEY }} --id=6440705d117953029dee9221
- name: Github action to update Starknet API - starknet_getTransactionReceipt
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getTransactionReceipt.yaml --key=${{ secrets.README_API_KEY }} --id=64407067099500000abb72f9
- name: Github action to update Starknet API - starknet_getBlockWithTxHashes
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getBlockWithTxHashes.yaml --key=${{ secrets.README_API_KEY }} --id=6440708c84b7390079c421cb
- name: Github action to update Starknet API - starknet_pendingTransactions
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_pendingTransactions.yaml --key=${{ secrets.README_API_KEY }} --id=644070ad5599f402959e3788
- name: Github action to update Starknet API - starknet_getBlockWithTxs
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getBlockWithTxs.yaml --key=${{ secrets.README_API_KEY }} --id=644070ef42d96f003cd74192
- name: Github action to update Starknet API - starknet_syncing
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_syncing.yaml --key=${{ secrets.README_API_KEY }} --id=644070fdb5b2f3001896f2d9
- name: Github action to update Starknet API - starknet_getClass
uses: readmeio/[email protected]
with:
rdme: openapi starknet/starknet_getClass.yaml --key=${{ secrets.README_API_KEY }} --id=6440711368d835000b7711a0