- pip install starknet-devnet
- mkdir build
- Run
make compile_deploy
in a terminal. - Export the printed contract address: `export CONTRACT_ADDR=<CONTRACT_ADDR>
- Run
make demo
in a separate terminal.
- get an api-key by registering to getblock.io.
- get the block hash of the block you want to query (here: 0)
curl --location --request POST 'https://btc.getblock.io/mainnet/' \ (py39)
--header 'x-api-key: <API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getblockhash",
"params": [0],
"id": "getblock.io"}'
- get the block by hash
curl --location --request POST 'https://btc.getblock.io/mainnet/' \ (py39)
--header 'x-api-key: <API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getblock",
"params": ["000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"],
"id" : "getblock.io"}'
See https://en.bitcoin.it/wiki/Block_hashing_algorithm for block hashing algorithm