Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor evm_body, evm_responses and evm_examples #262

Open
wants to merge 47 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
98fa0e5
Add custom styling
bmoyroud Oct 19, 2023
55dd694
Use ApiKey for account abstraction specs
bmoyroud Oct 19, 2023
fbe7c09
Use ApiKey for Arbitrum specs
bmoyroud Oct 19, 2023
05f1b8b
Use ApiKey for Astar spec
bmoyroud Oct 19, 2023
23475b6
Use ApiKey for Base specs
bmoyroud Oct 19, 2023
c443516
Use ApiKey for debug specs
bmoyroud Oct 19, 2023
2234013
Use ApiKey for Ethereum specs
bmoyroud Oct 19, 2023
71ee021
Use ApiKey for Optimism specs
bmoyroud Oct 19, 2023
c5fb765
Use ApiKey for Polygon PoS specs
bmoyroud Oct 19, 2023
cbdee96
Use ApiKey for Polygon zkEVM specs
bmoyroud Oct 19, 2023
1fd837f
Use ApiKey for Solana specs
bmoyroud Oct 19, 2023
b6a4af8
Use ApiKey for Starknet specs
bmoyroud Oct 19, 2023
1af5073
Use ApiKey for Token API specs
bmoyroud Oct 19, 2023
91391c0
Use ApiKey for trace specs
bmoyroud Oct 19, 2023
9138edc
Use ApiKey for transaction receipts specs
bmoyroud Oct 19, 2023
452c5c1
Use ApiKey for Transfers API spec
bmoyroud Oct 19, 2023
4cd0435
Reorder Starknet specs
bmoyroud Oct 19, 2023
8021507
Reorder trace specs
bmoyroud Oct 19, 2023
f06fd94
Reorder Token API specs
bmoyroud Oct 19, 2023
7ad1e23
Reorder tx receipt spec
bmoyroud Oct 19, 2023
155f789
Reorder Transfers API spec
bmoyroud Oct 19, 2023
6329ce8
Reorder Solana spec fields
bmoyroud Oct 19, 2023
761009e
Reorder account abstraction spec fields
bmoyroud Oct 19, 2023
a410b15
Refactor Arbitrum specs
bmoyroud Oct 19, 2023
df01f97
Refactor Astar spec
bmoyroud Oct 19, 2023
416bfb6
Refactor Base specs
bmoyroud Oct 19, 2023
7189949
Refactor debug specs
bmoyroud Oct 19, 2023
45736eb
Refactor Polygon zkEVM specs
bmoyroud Oct 19, 2023
81172cd
Refactor Polygon PoS specs
bmoyroud Oct 19, 2023
eb425ab
Refactor Optimism specs
bmoyroud Oct 19, 2023
a4aca7d
Refactor notify spec
bmoyroud Oct 19, 2023
e5cc4f1
Remove tags: []
bmoyroud Oct 19, 2023
eb827bf
Remove tags: []
bmoyroud Oct 19, 2023
74f011c
Refactor eth_accounts specs
bmoyroud Oct 19, 2023
23a7b16
Fix identation
bmoyroud Oct 19, 2023
fd45b43
Add placeholder for other path item schemas
bmoyroud Oct 19, 2023
297f076
Refactor eth_blockNumber
bmoyroud Oct 19, 2023
e5bd704
Add ref
bmoyroud Oct 19, 2023
03f740e
Start refactoring eth_call
bmoyroud Oct 19, 2023
014ffc0
Refactor BlockNumber out of evm_body.yaml
bmoyroud Oct 19, 2023
94233eb
Refactor eth_call
bmoyroud Oct 19, 2023
5dff3ab
Move zkEVM request bodies out of evm_body.yaml
bmoyroud Oct 19, 2023
4776164
Move debug specs out of evm_body.yaml
bmoyroud Oct 19, 2023
d9822f1
Refactor alchemy_getAssetTransfers
bmoyroud Oct 19, 2023
106c552
Refactor simple request bodies
bmoyroud Oct 19, 2023
f509c46
Move sample-languages
bmoyroud Oct 20, 2023
5f8a763
Move operationId
bmoyroud Oct 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reorder tx receipt spec
  • Loading branch information
bmoyroud committed Oct 19, 2023
commit 7ad1e23ffe060fae52ae5155a6a9a52371e1bb88
30 changes: 15 additions & 15 deletions transaction-receipts/alchemy_getTransactionReceipts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,24 @@ servers:
paths:
/{apiKey}:
post:
tags: ['Transaction Receipts Endpoints']
summary: alchemy_getTransactionReceipts
description: 'An enhanced API that gets all transaction receipts for a given block by number or block hash. Supported on all networks for Ethereum, Polygon, and Arbitrum.'
tags: ['Transaction Receipts Endpoints']
operationId: alchemy-getTransactionReceipts
parameters:
- $ref: ../components/parameters.yaml#/ApiKey
requestBody:
content:
application/json:
schema:
$ref: ../evm_body.yaml#/alchemy_getTransactionReceipts_param
responses:
'200':
description: A list of transaction receipts for each transaction in this block.
content:
application/json:
schema:
$ref: ../evm_responses.yaml#/transaction_receipt
x-readme:
explorer-enabled: false
samples-languages:
Expand Down Expand Up @@ -58,17 +72,3 @@ paths:
};

main();
parameters:
- $ref: ../components/parameters.yaml#/ApiKey
requestBody:
content:
application/json:
schema:
$ref: ../evm_body.yaml#/alchemy_getTransactionReceipts_param
responses:
'200':
description: A list of transaction receipts for each transaction in this block.
content:
application/json:
schema:
$ref: ../evm_responses.yaml#/transaction_receipt