|
50 | 50 | Get data from the AR.IO Gateway index using GQL
|
51 | 51 | - name: Admin
|
52 | 52 | description: |
|
53 |
| - Access several password protected features and functions specific to your AR.IO Gateway. |
| 53 | + Access several password protected features and functions specific to your AR.IO Gateway. |
| 54 | + - name: Admin |
| 55 | + description: | |
| 56 | + Access several password protected features and functions specific to your AR.IO Gateway. |
| 57 | + - name: Farcaster Frames |
| 58 | + description: | |
| 59 | + Retrieve and interact with Farcaster Frames using Arweave transactions. |
54 | 60 | components:
|
55 | 61 | securitySchemes:
|
56 | 62 | bearerAuth:
|
@@ -735,8 +741,8 @@ paths:
|
735 | 741 | put:
|
736 | 742 | tags: [Admin]
|
737 | 743 | summary: Blocks transactions or data-items so your AR.IO Gateway will not serve them.
|
738 |
| - description: | |
739 |
| - Submits a TX ID/data-item ID or sha-256 content hash for content you do not want your AR.IO Gateway to serve. Once submitted, your Gateway will not respond to requests for these transactions or data-items. |
| 744 | + description: | |
| 745 | + Submits a TX ID/data-item ID or sha-256 content hash for content you do not want your AR.IO Gateway to serve. Once submitted, your Gateway will not respond to requests for these transactions or data-items. |
740 | 746 |
|
741 | 747 |
|
742 | 748 | WARNING - Testing a TX ID here WILL result in that data being blocked by your Gateway.
|
@@ -770,3 +776,42 @@ paths:
|
770 | 776 | description: Unauthorized, API key likely incorrect.
|
771 | 777 | security:
|
772 | 778 | - bearerAuth: []
|
| 779 | + '/local/farcaster/frame/{txId}': |
| 780 | + get: |
| 781 | + tags: [Farcaster Frames] |
| 782 | + summary: Get transaction. |
| 783 | + description: Get the content of a specified transaction. |
| 784 | + parameters: |
| 785 | + - name: txId |
| 786 | + in: path |
| 787 | + required: true |
| 788 | + schema: |
| 789 | + type: string |
| 790 | + pattern: '^[0-9a-zA-Z_-]{43}$' |
| 791 | + responses: |
| 792 | + '200': |
| 793 | + description: |- |
| 794 | + Successful operation. |
| 795 | + content: |
| 796 | + application/json: |
| 797 | + schema: |
| 798 | + '$ref': '#/components/schemas/Transaction' |
| 799 | + post: |
| 800 | + tags: [Farcaster Frames] |
| 801 | + summary: Get transaction. |
| 802 | + description: Get the content of a specified transaction. |
| 803 | + parameters: |
| 804 | + - name: txId |
| 805 | + in: path |
| 806 | + required: true |
| 807 | + schema: |
| 808 | + type: string |
| 809 | + pattern: '^[0-9a-zA-Z_-]{43}$' |
| 810 | + responses: |
| 811 | + '200': |
| 812 | + description: |- |
| 813 | + Successful operation. |
| 814 | + content: |
| 815 | + application/json: |
| 816 | + schema: |
| 817 | + '$ref': '#/components/schemas/Transaction' |
0 commit comments