- Create new stack with one click or use the provided
stack.yaml
template (Use a Goerli eth endpoint and leave all other configurations default) - Connect to your EC2 instance
- Go to the resources tab
- Select your EC2 instance
- Go to your EC2 instance's primary page
Let's start with some foundations...
-
An Ethereum wallet is a private key and a public key pair.
-
A message is any string of text.
-
A signature is a string of text that is a function of a message and your private key.
-
When you have a message and a signature, you can recover the public key of the private key that created the signature.
This file contains hidden or 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
I am attesting that this GitHub handle payton is linked to the Tezos account tz1gp9pmUpk7gDU5cCQ8JBrg2nid4E4Wad5s for tzprofiles | |
sig:edsigtvwoAqAsDX1o9ncp7o2y5xVLQSMnaZ6xUbgHBZzixHbe2AAbJiSCz3VGUwEKB52XpA6DGFsZBeccFMThgPXQ7Xed6vDJ3A |
This is an unofficial community-created guide
- Clone cabot
- Copy development conf:
cp conf/development.env.example conf/development.env
- Create a new virtual environment in the Cabot root directory:
python -m virtualenv venv
- Activate your virtual environment:
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt -r requirements-dev.txt -r requirements-plugins