-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathstx-supply.ts
More file actions
263 lines (256 loc) · 9.31 KB
/
stx-supply.ts
File metadata and controls
263 lines (256 loc) · 9.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
import BigNumber from 'bignumber.js';
import { microStxToStx, STACKS_DECIMAL_PLACES, TOTAL_STACKS_YEAR_2050 } from '../../helpers';
import { handleChainTipCache } from '../controllers/cache-controller';
import { FastifyPluginAsync } from 'fastify';
import { Type, TypeBoxTypeProvider } from '@fastify/type-provider-typebox';
import { Server } from 'node:http';
import { UnanchoredParamSchema } from '../schemas/params';
export const StxSupplyRoutes: FastifyPluginAsync<
Record<never, never>,
Server,
TypeBoxTypeProvider
> = async fastify => {
async function getStxSupplyInfo(
args:
| {
blockHeight: number;
}
| {
includeUnanchored: boolean;
}
): Promise<{
unlockedPercent: string;
totalStx: string;
totalStxYear2050: string;
unlockedStx: string;
blockHeight: number;
}> {
const { stx: unlockedSupply, blockHeight } = await fastify.db.getUnlockedStxSupply(args);
const totalMicroStx = unlockedSupply;
const totalMicroStxYear2050 = new BigNumber(TOTAL_STACKS_YEAR_2050).shiftedBy(
STACKS_DECIMAL_PLACES
);
const unlockedPercent = new BigNumber(unlockedSupply.toString())
.div(new BigNumber(totalMicroStx.toString()))
.times(100)
.toFixed(2);
return {
unlockedPercent,
totalStx: microStxToStx(totalMicroStx),
totalStxYear2050: microStxToStx(totalMicroStxYear2050),
unlockedStx: microStxToStx(unlockedSupply),
blockHeight: blockHeight,
};
}
fastify.get(
'/',
{
preHandler: handleChainTipCache,
schema: {
operationId: 'get_stx_supply',
summary: 'Get total and unlocked STX supply',
description: `Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/block-production/stacking).`,
tags: ['Info'],
querystring: Type.Object({
height: Type.Optional(
Type.Integer({
minimum: 0,
title: 'Block height',
description:
'Supply details are queried from specified block height. If the block height is not specified, the latest block height is taken as default value. Note that the `block height` is referred to the stacks blockchain.',
examples: [777678],
})
),
unanchored: UnanchoredParamSchema,
}),
response: {
200: Type.Object(
{
unlocked_percent: Type.String({
description:
'String quoted decimal number of the percentage of STX that have unlocked',
}),
total_stx: Type.String({
description:
'String quoted decimal number of the total circulating number of STX (at the input block height if provided, otherwise the current block height)',
}),
total_stx_year_2050: Type.String({
description:
'String quoted decimal number of total circulating STX supply in year 2050. STX supply grows approx 0.3% annually thereafter in perpetuity.',
}),
unlocked_stx: Type.String({
description:
'String quoted decimal number of the STX that have been mined or unlocked',
}),
block_height: Type.Integer({
description: 'The block height at which this information was queried',
}),
},
{
title: 'GetStxSupplyResponse',
description: 'GET request that returns network target block times',
}
),
},
},
},
async (req, reply) => {
const blockHeight = req.query.height;
const supply = await getStxSupplyInfo(
blockHeight !== undefined
? { blockHeight }
: { includeUnanchored: req.query.unanchored ?? false }
);
await reply.send({
unlocked_percent: supply.unlockedPercent,
total_stx: supply.totalStx,
total_stx_year_2050: supply.totalStxYear2050,
unlocked_stx: supply.unlockedStx,
block_height: supply.blockHeight,
});
}
);
fastify.get(
'/total/plain',
{
preHandler: handleChainTipCache,
schema: {
deprecated: true,
operationId: 'get_stx_supply_total_supply_plain',
summary: 'Get total STX supply in plain text format',
description: `Retrieves the total circulating STX token supply as plain text.`,
tags: ['Info'],
response: {
200: {
content: {
'text/plain': {
schema: Type.String(),
},
},
},
},
},
},
async (_req, reply) => {
const supply = await getStxSupplyInfo({ includeUnanchored: false });
await reply.type('text/plain').send(supply.totalStx);
}
);
fastify.get(
'/circulating/plain',
{
preHandler: handleChainTipCache,
schema: {
deprecated: true,
operationId: 'get_stx_supply_circulating_plain',
summary: 'Get circulating STX supply in plain text format',
description: `Retrieves the STX tokens currently in circulation that have been unlocked as plain text.`,
tags: ['Info'],
response: {
200: {
content: {
'text/plain': {
schema: Type.String(),
},
},
},
},
},
},
async (_req, reply) => {
const supply = await getStxSupplyInfo({ includeUnanchored: false });
await reply.type('text/plain').send(supply.unlockedStx);
}
);
fastify.get(
'/legacy_format',
{
preHandler: handleChainTipCache,
schema: {
deprecated: true,
operationId: 'get_total_stx_supply_legacy_format',
summary:
'Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)',
description: `Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.`,
tags: ['Info'],
querystring: Type.Object({
height: Type.Optional(
Type.Integer({
minimum: 0,
title: 'Block height',
description:
'Supply details are queried from specified block height. If the block height is not specified, the latest block height is taken as default value. Note that the `block height` is referred to the stacks blockchain.',
examples: [777678],
})
),
unanchored: UnanchoredParamSchema,
}),
response: {
200: Type.Object(
{
unlockedPercent: Type.String({
description:
'String quoted decimal number of the percentage of STX that have unlocked',
}),
totalStacks: Type.String({
description:
'String quoted decimal number of the total circulating number of STX (at the input block height if provided, otherwise the current block height)',
}),
totalStacksFormatted: Type.String({
description: 'Same as `totalStacks` but formatted with comma thousands separators',
}),
totalStacksYear2050: Type.String({
description:
'String quoted decimal number of total circulating STX supply in year 2050. STX supply grows approx 0.3% annually thereafter in perpetuity.',
}),
totalStacksYear2050Formatted: Type.String({
description:
'Same as `totalStacksYear2050` but formatted with comma thousands separators',
}),
unlockedSupply: Type.String({
description:
'String quoted decimal number of the STX that have been mined or unlocked',
}),
unlockedSupplyFormatted: Type.String({
description:
'Same as `unlockedSupply` but formatted with comma thousands separators',
}),
blockHeight: Type.String({
description: 'The block height at which this information was queried',
}),
},
{
title: 'GetStxSupplyLegacyFormatResponse',
description: 'GET request that returns network target block times',
}
),
},
},
},
async (req, reply) => {
const blockHeight = req.query.height;
const supply = await getStxSupplyInfo(
blockHeight !== undefined
? { blockHeight }
: { includeUnanchored: req.query.unanchored ?? false }
);
await reply.send({
unlockedPercent: supply.unlockedPercent,
totalStacks: supply.totalStx,
totalStacksFormatted: new BigNumber(supply.totalStx).toFormat(STACKS_DECIMAL_PLACES, 8),
totalStacksYear2050: supply.totalStxYear2050,
totalStacksYear2050Formatted: new BigNumber(supply.totalStxYear2050).toFormat(
STACKS_DECIMAL_PLACES,
8
),
unlockedSupply: supply.unlockedStx,
unlockedSupplyFormatted: new BigNumber(supply.unlockedStx).toFormat(
STACKS_DECIMAL_PLACES,
8
),
blockHeight: supply.blockHeight.toString(),
});
}
);
await Promise.resolve();
};