DISCLAIMER: NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK
UPDATED: 16:51pm AEST 09/Aug/2020
There are two keypairs that are required to register a pool:
- reward account (costs and rewards) and
- owner stake (pledge) keypair.
| #!/bin/bash | |
| function cardano-address-init() { | |
| WALLETS_DIR=${HOME}/.cardano/wallets | |
| MNEMONICS_SIZE=24 | |
| } | |
| function cardano-address-testnet-init() { |
| #!/usr/bin/env bash | |
| set -e | |
| NETWORK_MAGIC=1097911063 | |
| SOURCE_ADDRESS=$(cat ~/.cardano/wallets/testnet-repoc/payment.addr) | |
| DESTINATION_ADDRESS=addr_test1vq87dp3djy6sz2yj23msw5d6ur96h0jsvks0p8mdwh2c0mghc68m3 | |
| PAYMENT_SKEY=${HOME}/.cardano/wallets/testnet-repoc/payment.skey | |
| SEND_AMOUNT=10000000 |
I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might be really unintuitive at first but lambda functions have three states.