0x2bitcoin pfp
0x2bitcoin
@0x2bitcoin.eth
// Setup: npm install alchemy-sdk // Github: https://github.com/alchemyplatform/alchemy-sdk-js import { Network, Alchemy } from "alchemy-sdk"; // Optional config object, but defaults to demo api-key and eth-mainnet. const settings = { apiKey: "wIPq0wv8wksKAvDxDFsygqzNLywAmLXt", // Replace with your Alchemy API Key. network: Network.ARB_MAINNET, // Replace with your network. }; const alchemy = new Alchemy(settings); alchemy.core.getBlock(15221026).then(console.log);
0 reply
0 recast
0 reaction