We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4463117 commit e7e5a3eCopy full SHA for e7e5a3e
scripts/fetch-openapi-specs.mts
@@ -23,10 +23,6 @@ interface GitHubApiSpec {
23
}
24
25
const API_SPECS: ApiSpec[] = [
26
- {
27
- name: 'stacks-blockchain',
28
- url: 'https://stacks-blockchain-api.vercel.app/openapi.json',
29
- },
30
{
31
name: 'token-metadata',
32
url: 'https://token-metadata-api.vercel.app/openapi.json',
@@ -57,6 +53,13 @@ const GITHUB_API_SPECS: GitHubApiSpec[] = [
57
53
branch: 'develop',
58
54
filePath: 'docs/rpc/openapi.yaml',
59
55
},
56
+ {
+ name: 'stacks-blockchain',
+ type: 'github',
+ repo: 'hirosystems/stacks-blockchain-api',
60
+ branch: 'master',
61
+ filePath: 'openapi.yaml',
62
+ },
63
];
64
65
async function generatePlatformApiSpec(): Promise<void> {
0 commit comments