From 77423a1a028468290ef5c8858b2cc8e21b7acbb8 Mon Sep 17 00:00:00 2001 From: Ales Dumikau Date: Tue, 11 Aug 2026 14:45:30 +0300 Subject: [PATCH] chore(algorand-indexer): remove v2 and v3 --- algorand-indexer/rest-api/CHANGELOG.md | 6 ++ algorand-indexer/rest-api/VERSION | 2 +- algorand-indexer/rest-api/openapi-v2.json | 36 ------- algorand-indexer/rest-api/openapi-v3.json | 110 ---------------------- 4 files changed, 7 insertions(+), 147 deletions(-) delete mode 100644 algorand-indexer/rest-api/openapi-v2.json delete mode 100644 algorand-indexer/rest-api/openapi-v3.json diff --git a/algorand-indexer/rest-api/CHANGELOG.md b/algorand-indexer/rest-api/CHANGELOG.md index 09f47f8..1afcc30 100644 --- a/algorand-indexer/rest-api/CHANGELOG.md +++ b/algorand-indexer/rest-api/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this schema are documented in this file. The format is based on [Keep a ChangeLog](https://keepachangelog.com/) and follows [Semantic Versioning](https://semver.org/) +## [0.0.5] - 2026-08-11 + +### Removed + +- Removed v2 and v3 specs as they were for testing. + ## [0.0.4] - 2026-06-04 ### Added diff --git a/algorand-indexer/rest-api/VERSION b/algorand-indexer/rest-api/VERSION index 81340c7..bbdeab6 100644 --- a/algorand-indexer/rest-api/VERSION +++ b/algorand-indexer/rest-api/VERSION @@ -1 +1 @@ -0.0.4 +0.0.5 diff --git a/algorand-indexer/rest-api/openapi-v2.json b/algorand-indexer/rest-api/openapi-v2.json deleted file mode 100644 index abb272d..0000000 --- a/algorand-indexer/rest-api/openapi-v2.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "openapi": "3.0.1", - "info": { - "title": "Algorand-Indexer REST API v2 Method Pricing Overrides", - "description": "Partial method pricing layer. Methods omitted from this file inherit their nearest definition from a lower method version.", - "version": "0.0.2", - "contact": { - "name": "devs", - "email": "devs@chain.love" - } - }, - "paths": { - "/v2/accounts/{account-id}": { - "get": { - "description": "Lookup account information.", - "operationId": "lookupAccountByID", - "parameters": [ - { - "in": "path", - "name": "account-id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Successful response" - } - }, - "x-cu-cost": 4 - } - } - } -} diff --git a/algorand-indexer/rest-api/openapi-v3.json b/algorand-indexer/rest-api/openapi-v3.json deleted file mode 100644 index 54273f3..0000000 --- a/algorand-indexer/rest-api/openapi-v3.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "openapi": "3.0.1", - "info": { - "title": "Algorand-Indexer REST API v3 Method Pricing Overrides", - "description": "Partial method pricing layer. Methods omitted from this file inherit their nearest definition from a lower method version.", - "version": "0.0.3", - "contact": { - "name": "devs", - "email": "devs@chain.love" - } - }, - "paths": { - "/v2/accounts/{account-id}": { - "get": { - "description": "Lookup account information.", - "operationId": "lookupAccountByID", - "parameters": [ - { - "in": "path", - "name": "account-id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Successful response" - } - }, - "x-cu-cost": 8 - } - }, - "/v2/transactions": { - "get": { - "description": "Search for transactions.", - "operationId": "searchForTransactions", - "parameters": [ - { - "description": "Maximum number of results to return.", - "in": "query", - "name": "limit", - "schema": { - "type": "integer" - } - } - ], - "responses": { - "200": { - "description": "Successful response" - } - }, - "x-cu-cost": 6 - } - }, - "/v2/accounts/{account-id}/pending-transactions": { - "get": { - "description": "Lookup pending transactions for an account.", - "operationId": "lookupAccountPendingTransactions", - "parameters": [ - { - "in": "path", - "name": "account-id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Maximum number of results to return.", - "in": "query", - "name": "limit", - "schema": { - "type": "integer" - } - } - ], - "responses": { - "200": { - "description": "Successful response" - } - }, - "x-cu-cost": 3 - } - }, - "/v2/applications/{application-id}/state": { - "get": { - "description": "Lookup indexed application state.", - "operationId": "lookupApplicationStateByID", - "parameters": [ - { - "in": "path", - "name": "application-id", - "required": true, - "schema": { - "type": "integer" - } - } - ], - "responses": { - "200": { - "description": "Successful response" - } - }, - "x-cu-cost": 5 - } - } - } -}