-
Notifications
You must be signed in to change notification settings - Fork 211
/
server.ts
266 lines (215 loc) · 8.29 KB
/
server.ts
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
import express from 'express'
import cors from 'cors'
import path from 'path'
import dotenv from 'dotenv'
import { RateLimiter, VerifyCaptcha, parseBody, parseURI } from './middlewares'
import EVM from './vms/evm'
import {
SendTokenResponse,
ChainType,
EVMInstanceAndConfig,
} from './types'
import {
evmchains,
erc20tokens,
couponConfig,
GLOBAL_RL,
NATIVE_CLIENT,
DEBUG,
MAINNET_BALANCE_CHECK_RPC,
MAINNET_BALANCE_CHECK_CHAIN_ID,
} from './config.json'
import { CouponService } from './CouponService/couponService'
import {
PIPELINE_CHECKS,
PipelineCheckValidity,
checkCouponPipeline,
checkMainnetBalancePipeline,
pipelineFailureMessage
} from './utils/pipelineChecks'
import { MainnetCheckService } from './mainnetCheckService'
dotenv.config()
const app: any = express()
const router: any = express.Router()
app.use(cors())
app.use(parseURI)
app.use(parseBody)
if (NATIVE_CLIENT) {
app.use(express.static(path.join(__dirname, "client")))
}
new RateLimiter(app, [GLOBAL_RL])
new RateLimiter(app, [
...evmchains,
...erc20tokens
])
// address rate limiter
new RateLimiter(app, [
...evmchains,
...erc20tokens
], (req: any, res: any) => {
const addr = req.body?.address
if(typeof addr == "string" && addr) {
return addr.toUpperCase()
}
})
const couponService = new CouponService(couponConfig)
const mainnetCheckService = new MainnetCheckService(MAINNET_BALANCE_CHECK_RPC)
const captcha: VerifyCaptcha = new VerifyCaptcha(app, process.env.CAPTCHA_SECRET!, process.env.V2_CAPTCHA_SECRET!)
let evms = new Map<string, EVMInstanceAndConfig>()
// Get the complete config object from the array of config objects (chains) with ID as id
const getChainByID = (chains: ChainType[], id: string): ChainType | undefined => {
let reply: ChainType | undefined
chains.forEach((chain: ChainType): void => {
if(chain.ID == id) {
reply = chain
}
})
return reply
}
const separateConfigFields = ['COUPON_REQUIRED', 'MAINNET_BALANCE_CHECK_ENABLED']
// Populates the missing config keys of the child using the parent's config
const populateConfig = (child: any, parent: any): any => {
Object.keys(parent || {}).forEach((key) => {
// Do not copy configs of separateConfigFields (in ERC20 tokens) from host chain
if(!separateConfigFields.includes(key) && !child[key]) {
child[key] = parent[key]
}
})
return child
}
// Setting up instance for EVM chains
evmchains.forEach((chain: ChainType): void => {
const chainInstance: EVM = new EVM(chain, (process.env[chain.ID] || process.env.PK)!)
evms.set(chain.ID, {
config: chain,
instance: chainInstance
})
})
// Adding ERC20 token contracts to their HOST evm instances
erc20tokens.forEach((token: any, i: number): void => {
if(token.HOSTID) {
token = populateConfig(token, getChainByID(evmchains, token.HOSTID))
}
erc20tokens[i] = token
const evm: EVMInstanceAndConfig = evms.get(getChainByID(evmchains, token.HOSTID)?.ID!)!
evm?.instance.addERC20Contract(token)
})
// POST request for sending tokens or coins
router.post('/sendToken', captcha.middleware, async (req: any, res: any) => {
const address: string = req.body?.address
const chain: string = req.body?.chain
const erc20: string | undefined = req.body?.erc20
const coupon: string | undefined = req.body?.couponId
// initialize instances
const evm = evms.get(chain)
const erc20Instance = evm?.instance?.contracts?.get(erc20 ?? "")
// validate parameters
if (evm === undefined || (erc20 && erc20Instance === undefined)) {
res.status(400).send({ message: 'Invalid parameters passed!' })
return
}
// unique id for each token
const faucetConfigId = erc20Instance?.config.ID ?? evm?.config.ID
// drip amount (native or erc20 token) for this request as per config
const dripAmount = erc20Instance?.config.DRIP_AMOUNT ?? evm.config.DRIP_AMOUNT
/**
* Pipeline Checks
* 1. Pipelines are checks or rules that a request goes through before being processed
* 2. The request should pass at least one pipeline check
* 3. If no pipeline check is required for a token, then directly process the request
* 4. Currently, we have 2 pipeline checks: Coupon Check & Mainnet Balance Check
*/
const mainnetCheckEnabled = (erc20Instance ? erc20Instance.config.MAINNET_BALANCE_CHECK_ENABLED : evm.config.MAINNET_BALANCE_CHECK_ENABLED) ?? false
const couponCheckEnabled = couponConfig.IS_ENABLED && ((erc20Instance ? erc20Instance.config.COUPON_REQUIRED : evm.config.COUPON_REQUIRED) ?? false)
let pipelineValidity: PipelineCheckValidity = {isValid: false, dripAmount}
!pipelineValidity.isValid && couponCheckEnabled && await checkCouponPipeline(couponService, pipelineValidity, faucetConfigId, coupon)
// don't check mainnet balance, if coupon is provided
!pipelineValidity.isValid && !coupon && mainnetCheckEnabled && await checkMainnetBalancePipeline(mainnetCheckService, pipelineValidity, MAINNET_BALANCE_CHECK_RPC, address)
if (
(mainnetCheckEnabled || couponCheckEnabled) &&
!pipelineValidity.isValid
) {
// failed
res.status(400).send({message: pipelineValidity.errorMessage + pipelineFailureMessage(MAINNET_BALANCE_CHECK_RPC, couponCheckEnabled)})
return
}
// logging requests (if enabled)
DEBUG && console.log(JSON.stringify({
date: new Date(),
type: "NewFaucetRequest",
faucetConfigId,
address,
chain,
erc20,
checkPassedType: pipelineValidity.checkPassedType,
dripAmount: pipelineValidity.dripAmount,
mainnetBalance: pipelineValidity.mainnetBalance,
ip: req.headers["cf-connecting-ip"] || req.ip
}))
// send request
evm.instance.sendToken(address, erc20, pipelineValidity.dripAmount, async (data: SendTokenResponse) => {
const { status, message, txHash } = data
// reclaim coupon if transaction is failed
if (pipelineValidity.checkPassedType === PIPELINE_CHECKS.COUPON && coupon && txHash === undefined) {
await couponService.reclaimCouponAmount(coupon, pipelineValidity.dripAmount)
}
res.status(status).send({message, txHash})
})
})
// GET request for fetching all the chain and token configurations
router.get('/getChainConfigs', (req: any, res: any) => {
const configs: any = [...evmchains, ...erc20tokens]
res.send({ configs, MAINNET_BALANCE_CHECK_RPC, MAINNET_BALANCE_CHECK_CHAIN_ID })
})
// GET request for fetching faucet address for the specified chain
router.get('/faucetAddress', (req: any, res: any) => {
const chain: string = req.query?.chain
const evm: EVMInstanceAndConfig = evms.get(chain)!
res.send({
address: evm?.instance.account.address
})
})
// GET request for fetching faucet balance for the specified chain or token
router.get('/getBalance', (req: any, res: any) => {
const chain: string = req.query?.chain
const erc20: string | undefined = req.query?.erc20
const evm: EVMInstanceAndConfig = evms.get(chain)!
let balance: bigint = evm?.instance.getBalance(erc20)
if(balance) {
balance = balance
} else {
balance = BigInt(0)
}
res.status(200).send({
balance: balance?.toString()
})
})
router.get('/faucetUsage', (req: any, res: any) => {
const chain: string = req.query?.chain
const evm: EVMInstanceAndConfig = evms.get(chain)!
const usage: number = evm?.instance?.getFaucetUsage()
res.status(200).send({
usage
})
})
app.use('/api', router)
app.get('/health', (req: any, res: any) => {
res.status(200).send('Server healthy')
})
app.get('/ip', (req: any, res: any) => {
res.status(200).send({
ip: req.headers["cf-connecting-ip"] || req.ip
})
})
app.get('*', async (req: any, res: any) => {
const chain = req.query.subnet;
const erc20 = req.query.erc20;
if (NATIVE_CLIENT) {
res.sendFile(path.join(__dirname, "client", "index.html"))
} else {
res.redirect(`https://core.app/tools/testnet-faucet${chain ? "?subnet=" + chain + (erc20 ? "&token=" + erc20 : "") : ""}`);
}
})
app.listen(process.env.PORT || 8000, () => {
console.log(`Server started at port ${process.env.PORT || 8000}`)
})