-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
134 additions
and
466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Boba Mainnet Faucet | ||
Using ImageCaptcha | ||
|
||
### Foundry commands | ||
Use `--no-commit --no-git` for all commands. |
3 changes: 3 additions & 0 deletions
3
boba_community/hc-captcha-mainnetfaucet-2023/api/.env-template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
REDIS_URL=localhost | ||
REDIS_PORT=6379 | ||
IS_LOCAL=False |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
boba_community/hc-captcha-mainnetfaucet-2023/api/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python-dotenv | ||
redis | ||
web3>=5.29.2 | ||
captcha |
56 changes: 0 additions & 56 deletions
56
boba_community/hc-captcha-mainnetfaucet-2023/api/serverless.yml
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
boba_community/hc-captcha-mainnetfaucet-2023/api/template.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
AWSTemplateFormatVersion: '2010-09-09' | ||
Transform: 'AWS::Serverless-2016-10-31' | ||
Resources: | ||
MainnetFaucetGetCaptcha: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
Handler: hc_getCAPTCHA.lambda_handler | ||
Runtime: python3.9 | ||
Events: | ||
HttpGet: | ||
Type: Api | ||
Properties: | ||
Path: '/' | ||
Method: post | ||
MainnetFaucetVerifyCaptcha: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
Handler: hc_verifyCAPTCHA.lambda_handler | ||
Runtime: python3.9 | ||
Events: | ||
HttpGet: | ||
Type: Api | ||
Properties: | ||
Path: '/' | ||
Method: post |
12 changes: 0 additions & 12 deletions
12
boba_community/hc-captcha-mainnetfaucet-2023/script/Counter.s.sol
This file was deleted.
Oops, something went wrong.
177 changes: 0 additions & 177 deletions
177
boba_community/hc-captcha-mainnetfaucet-2023/scripts/abis/TuringHelperFactory.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.