Merge pull request #288 from alchemyplatform/gh-actions #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |