-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathserverless.yml
429 lines (379 loc) · 10.6 KB
/
serverless.yml
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
org: llamafolio
app: llamafolio-api
service: llamafolio-api
package:
individually: true
frameworkVersion: '3'
useDotenv: true
provider:
name: aws
runtime: nodejs18.x
stage: dev
region: eu-central-1
endpointType: REGIONAL # Set to regional because the api gateway will be behind a cloudfront distribution
tracing:
apiGateway: true
lambda: true
memorySize: 256
iamRoleStatements:
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource: '*'
- Effect: 'Allow'
Action:
- 's3:ListBucket'
- 's3:*Object*'
Resource: '*'
- Effect: 'Allow'
Action:
- 'lambda:InvokeFunction'
Resource: '*'
- Effect: 'Allow'
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchGetItem
Resource:
- 'arn:aws:dynamodb:eu-central-1:610755237132:table/${self:custom.tableName}'
environment:
CLICKHOUSE_HOST: ${env:CLICKHOUSE_HOST}
CLICKHOUSE_USER: ${env:CLICKHOUSE_USER}
CLICKHOUSE_PASSWORD: ${env:CLICKHOUSE_PASSWORD}
STAGE: ${self:custom.stage}
AWS_NODEJS_CONNECTION_REUSE_ENABLED: 1
LLAMANODES_API_KEY: ${env:LLAMANODES_API_KEY}
DEFILLAMA_LABELS_API_KEY: ${env:DEFILLAMA_LABELS_API_KEY}
DEFILLAMA_PRICE_API_KEY: ${env:DEFILLAMA_PRICE_API_KEY}
SENTRY_DSN: ${env:SENTRY_DSN}
CLOUDFLARE_R2_PUBLIC_URL: ${env:CLOUDFLARE_R2_PUBLIC_URL}
SLACK_TOKEN: ${env:SLACK_TOKEN}
SLACK_CHANNEL_ID: ${env:SLACK_CHANNEL_ID}
ANKR_API_KEY: ${env:ANKR_API_KEY}
NFTPORT_API_KEY: ${env:NFTPORT_API_KEY}
OPENSEA_API_KEY: ${env:OPENSEA_API_KEY}
NFTSCAN_API_KEY: ${env:NFTSCAN_API_KEY}
ALCHEMY_API_KEY: ${env:ALCHEMY_API_KEY}
CENTER_API_KEY: ${env:CENTER_API_KEY}
QUICKNODE_API_KEY: ${env:QUICKNODE_API_KEY}
QUICKNODE_HTTP_URL: ${env:QUICKNODE_HTTP_URL}
RESERVOIR_API_KEY: ${env:RESERVOIR_API_KEY}
BALANCES_DDB: ${env:BALANCES_DDB}
tableName: ${self:custom.tableName}
functions:
fallback:
handler: src/handlers/fallback.handler
events:
- http:
path: /{params+}
method: any
corsPreflight:
handler: src/handlers/corsPreflight.handler
events:
- http:
path: /{params+}
method: options
getNFTs:
handler: src/handlers/getNFTs.handler
description: Get address nfts
events:
- http:
method: get
path: /nfts/{address}
timeout: 29
memorySize: 512
getNFTsHistory:
handler: src/handlers/getNFTsHistory.handler
description: Get nfts activity history
events:
- http:
method: get
path: /nfts/history/{address}
timeout: 29
memorySize: 512
getBalances:
handler: src/handlers/getBalances.handler
description: Get address balances
events:
- http:
method: get
path: /balances/{address}
timeout: 10
getBalancesTokens:
handler: src/handlers/getBalancesTokens.handler
description: Get address erc20 balances
events:
- http:
method: get
path: /balances/{address}/tokens
timeout: 15
memorySize: 512
getCalendar:
handler: src/handlers/getCalendar.handler
description: Get calendar
events:
- http:
method: get
path: /calendar/{address}
timeout: 10
getContract:
handler: src/handlers/getContract.handler
description: Get contract info
events:
- http:
method: get
path: /contracts/{chain}/{address}
timeout: 15
getTrendingContracts:
handler: src/handlers/getTrendingContracts.handler
description: Get trending contracts
events:
- http:
method: get
path: /contracts/trending
timeout: 29
getGasUsed:
handler: src/handlers/getGasUsed.handler
description: Get gas used
events:
- http:
method: get
path: /gas_used/{address}
getGasChart:
handler: src/handlers/getGasChart.handler
description: Get gas chart
events:
- http:
method: get
path: /gas/chart
timeout: 15
getHistory:
handler: src/handlers/getHistory.handler
description: Get address history
events:
- http:
method: get
path: /history/{address}
timeout: 29
getHistoryStats:
handler: src/handlers/getHistoryStats.handler
description: Get address history stats
events:
- http:
method: get
path: /history/{address}/stats
timeout: 15
getInfoStats:
handler: src/handlers/getInfoStats.handler
description: Get stats on supported protocols, chains and tokens
events:
- http:
method: get
path: /info/stats
getInfoAddress:
handler: src/handlers/getInfoAddress.handler
description: Get address info
events:
- http:
method: get
path: /info/{address}
timeout: 15
getLabels:
handler: src/handlers/getLabels.handler
description: Get labels
events:
- http:
method: get
path: /labels/{address}
getProtocols:
handler: src/handlers/getProtocols.handler
description: Get protocols
events:
- http:
method: get
path: /protocols
getProtocolContracts:
handler: src/handlers/getProtocolContracts.handler
description: Get protocol contracts
events:
- http:
method: get
path: /protocols/{protocol}/contracts
timeout: 10
getProtocolHolders:
handler: src/handlers/getProtocolHolders.handler
description: Get protocol holders
events:
- http:
method: get
path: /protocols/{protocol}/holders
timeout: 15
getLatestProtocols:
handler: src/handlers/getLatestProtocols.handler
description: Get latest protocols
events:
- http:
method: get
path: /protocols/latest
timeout: 15
getLatestSnapshot:
handler: src/handlers/getLatestSnapshot.handler
description: Get latest snapshot
events:
- http:
method: get
path: /snapshots/{address}/latest
timeout: 10
getLatestTokensTransfers:
handler: src/handlers/getLatestTokensTransfers.handler
description: Get latest tokens transfers
events:
- http:
method: get
path: /tokens_transfers/{chain}/{address}/latest
timeout: 10
getSyncStatus:
handler: src/handlers/getSyncStatus.handler
description: Get sync status
events:
- http:
method: get
path: /sync_status
timeout: 10
getToken:
handler: src/handlers/getToken.handler
description: Get token
events:
- http:
method: get
path: /tokens/{chain}/{address}
timeout: 20
getTokenBalanceChart:
handler: src/handlers/getTokenBalanceChart.handler
description: Get token balance chart
events:
- http:
method: get
path: /balances/{address}/tokens/{token}/chart
timeout: 10
getTokenHolders:
handler: src/handlers/getTokenHolders.handler
description: Get the holders data for a token
events:
- http:
method: get
path: /holders/{address}
timeout: 15
getTokenYields:
handler: src/handlers/getTokenYields.handler
description: Get token yields
events:
- http:
method: get
path: /tokens/{chain}/{address}/yields
timeout: 15
getTokenLend:
handler: src/handlers/getTokenLend.handler
description: Get token lend pools
events:
- http:
method: get
path: /tokens/{chain}/{address}/lend
timeout: 15
getTokenBorrow:
handler: src/handlers/getTokenBorrow.handler
description: Get token borrow pools
events:
- http:
method: get
path: /tokens/{chain}/{address}/borrow
timeout: 15
scheduledRevalidateAdaptersContracts:
handler: src/handlers/revalidateAdapters.scheduledRevalidateAdaptersContracts
description: Revalidate expired adapters contracts
events:
- schedule: rate(15 minutes)
memorySize: 1024
timeout: 300
scheduledUpdateCoingeckoCoins:
handler: src/handlers/updateCoingeckoCoins.scheduledUpdateCoingeckoCoins
description: Scheduled update Coingecko coins
events:
# every new hour
- schedule: cron(0 * * * ? *)
scheduledUpdateGovernanceProposals:
handler: src/handlers/updateGovernanceProposals.scheduledUpdateGovernanceProposals
description: Scheduled update governance proposals
events:
# every new hour
- schedule: cron(0 * * * ? *)
scheduledUpdateLendBorrow:
handler: src/handlers/updateLendBorrow.scheduledUpdateLendBorrow
description: Scheduled update lend borrow
events:
# every new hour
- schedule: cron(0 * * * ? *)
scheduledUpdateProtocols:
handler: src/handlers/updateProtocols.scheduledUpdateProtocols
description: Scheduled update protocols
events:
# every new hour
- schedule: cron(0 * * * ? *)
scheduledUpdateYields:
handler: src/handlers/updateYields.scheduledUpdateYields
description: Scheduled update yields
events:
# every new hour
- schedule: cron(0 * * * ? *)
revalidateAdapterContracts:
handler: src/handlers/revalidateAdapters.revalidateAdapterContractsHandler
description: Revalidate adapter contracts
updateGovernanceProposals:
handler: src/handlers/updateGovernanceProposals.handler
description: Update governance proposals
timeout: 300
updateBalances:
handler: src/handlers/updateBalances.handler
description: Update balances
events:
- http:
method: post
path: /balances/{address}
timeout: 29
memorySize: 512
updateCoingeckoCoins:
handler: src/handlers/updateCoingeckoCoins.handler
description: Update Coingecko coins
timeout: 300
updateLendBorrow:
handler: src/handlers/updateLendBorrow.handler
description: Update lend borrow
timeout: 300
updateProtocols:
handler: src/handlers/updateProtocols.handler
description: Update protocols
timeout: 300
updateYields:
handler: src/handlers/updateYields.handler
description: Update yields
timeout: 300
custom:
stage: ${opt:stage, self:provider.stage}
tableName: ${self:custom.stage}-llamafolio-table
esbuild:
config: './esbuild.config.cjs'
prune:
automatic: true
number: 5 # Number of versions to keep
resources:
# CORS for api gateway errors
- ${file(resources/api-gateway-errors.yml)}
plugins:
- serverless-esbuild
- serverless-offline
- serverless-prune-plugin