Crie o formulário a seguir com os seguintes campos:
FICHA CADASTRAL SUPERGYM
Nome: ____________________
Sobrenome: ________________
Data de Nascimento: __/__/____
| import { useContext, useState, updateState, setState, useEffect } from "react"; | |
| import AppContext from "../components/AppContext"; | |
| import { useRouter } from "next/router"; | |
| import { Web5 } from "@web5/api"; | |
| import Ajv from "ajv"; | |
| /*import { webcrypto } from "node:crypto"; | |
| // @ts-ignore | |
| if (!globalThis.crypto) globalThis.crypto = webcrypto;*/ |
| code --install-extension cesium.gltf-vscode | |
| code --install-extension ckolkman.vscode-postgres | |
| code --install-extension dbaeumer.vscode-eslint | |
| code --install-extension donjayamanne.githistory | |
| code --install-extension eamodio.gitlens | |
| code --install-extension eg2.tslint | |
| code --install-extension humao.rest-client | |
| code --install-extension mikestead.dotenv | |
| code --install-extension ms-python.python | |
| code --install-extension ms-vscode.cpptools |
| { | |
| "_id": ObjectId("5b96c7fd6728f700017279ea"), | |
| "receipt": { | |
| "receiver": "monstereosio", | |
| "act_digest": "083c39038a72af176506fc1ba1d6fa42633f89d1480f3618ed20a4bf69b45490", | |
| "global_sequence": 908441, | |
| "recv_sequence": 380, | |
| "auth_sequence": [ | |
| [ | |
| "monsterusera", |
| ts=$(date +%s%N) | |
| block=120 | |
| counter=0 | |
| while [ $counter -lt $1 ] | |
| do | |
| curl -w "@curl-format.txt" -s --request POST --url http://localhost:8888/v1/chain/get_block --data '{"block_num_or_id":"'"$block"'"}' | |
| counter=$((counter+1)) | |
| block=$((block+1)) |
| /** | |
| * Pet-Tamagotchi-Alike Smart Contract | |
| * | |
| * The idea is to copy the original tamagotchi to the chain :) | |
| * | |
| * | |
| * @author Leo Ribeiro | |
| */ | |
| #include <eosiolib/asset.hpp> | |
| #include <eosiolib/eosio.hpp> |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| ########################################################################### | |
| # | |
| # Created by | |
| # Bohdan Kossak, CryptoLions.io | |
| # | |
| # Auto Installer for Jungle Network Generated by Monitor | |
| ########################################################################### |
| module Main exposing (..) | |
| import Html exposing (..) | |
| import Http | |
| import Json.Decode as Decode | |
| import Json.Decode.Pipeline exposing (decode, required, hardcoded) | |
| main = | |
| Html.program |