No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

123456789101112131415161718192021222324
  1. import { createPublicClient, http, Block } from "viem";
  2. import { polygonAmoy } from "viem/chains";
  3. async function main() {
  4. const client = createPublicClient({
  5. chain: polygonAmoy,
  6. transport: http("https://polygon-amoy.g.alchemy.com/v2/o5F9YD_LHZZEde-gXzZyv"),
  7. });
  8. const block: Block = await client.getBlock({
  9. blockNumber: 123456n,
  10. });
  11. console.log(block);
  12. }
  13. main();