https://github.com/smithclay/go-etherdome
experimental ethereum BaaS running on AWS
https://github.com/smithclay/go-etherdome
Last synced: 8 months ago
JSON representation
experimental ethereum BaaS running on AWS
- Host: GitHub
- URL: https://github.com/smithclay/go-etherdome
- Owner: smithclay
- Created: 2018-01-18T06:44:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-13T04:31:17.000Z (over 8 years ago)
- Last Synced: 2025-02-08T16:43:46.467Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 9.42 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## etherdome

`geth` running on AWS Lambda. WIP.
### deploying
```
$ sam package --template-file template.yaml --s3-bucket etherdome --output-template-file packaged.yaml
$ sam deploy --template-file ./packaged.yaml --stack-name etherdome-stack --capabilities CAPABILITY_IAM
```
### environment variables
* `LOG_DEBUG`: include debug output in logs
### localstack setup
When running with AWS SAM Local, mock AWS services are used with localstack:
```
$ localstack start --docker
$ aws --endpoint-url="http://127.0.0.1:4572" s3api create-bucket --bucket etherdome
$ aws --endpoint-url="http://127.0.0.1:4572" s3api list-buckets
````