Granola-Team / mina-indexer

The Mina Indexer is a re-imagined version of the software collectively called the "Mina archive node."
Apache License 2.0
18 stars 10 forks source link

Problem: this query takes way too long #1339

Open n1tranquilla opened 1 month ago

n1tranquilla commented 1 month ago

(Edited by @robinbb)

This query pins 2 CPUs at 100% and does not return before Cloudflare times out the request (1 minute?).

So, it is unacceptably slow because the front-end seems to hang.

curl 'https://api.minasearch.com/graphql' --data-raw $'{"variables":{"blocks_query":{"creatorAccount":{"publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"},"canonical":true},"blocks_limit":25,"blocks_sort_by":"BLOCKHEIGHT_DESC","snarks_sort_by":"BLOCKHEIGHT_DESC","snarks_limit":25,"snarks_query":{"prover":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","canonical":true,"block":{"creatorAccount":{"publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"}}},"trans_limit":25,"trans_sort_by":"BLOCKHEIGHT_DESC","outgoing_trans_query":{"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","canonical":true},"incoming_trans_query":{"canonical":true,"to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"},"account_query":{"publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"},"internal_commands_limit":25,"internal_commands_sort_by":"BLOCKHEIGHT_DESC","internal_commands_query":{"recipient":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","canonical":true}},"query":"query AccountActivityQuery(\\n  $blocks_query: BlockQueryInput\u0021\\n  $blocks_limit: Int = 3\\n  $blocks_sort_by: BlockSortByInput\u0021\\n  $snarks_sort_by: SnarkSortByInput\u0021\\n  $snarks_limit: Int = 3\\n  $snarks_query: SnarkQueryInput\u0021\\n  $trans_limit: Int = 10\\n  $trans_sort_by: TransactionSortByInput\u0021\\n  $outgoing_trans_query: TransactionQueryInput\u0021\\n  $incoming_trans_query: TransactionQueryInput\u0021\\n  $account_query: AccountQueryInput\u0021\\n  $internal_commands_limit: Int = 3\\n  $internal_commands_sort_by: FeetransferSortByInput\u0021\\n  $internal_commands_query: FeetransferQueryInput\u0021\\n) {\\n  incoming_transactions: transactions(\\n    sortBy: $trans_sort_by\\n    limit: $trans_limit\\n    query: $incoming_trans_query\\n  ) {\\n    canonical\\n    fee\\n    from\\n    hash\\n    to\\n    amount\\n    block {\\n      dateTime\\n    }\\n    blockHeight\\n    nonce\\n    kind\\n    failureReason\\n    memo\\n  }\\n  outgoing_transactions: transactions(\\n    sortBy: $trans_sort_by\\n    limit: $trans_limit\\n    query: $outgoing_trans_query\\n  ) {\\n    canonical\\n    fee\\n    from\\n    hash\\n    to\\n    amount\\n    block {\\n      dateTime\\n    }\\n    blockHeight\\n    nonce\\n    kind\\n    failureReason\\n    memo\\n  }\\n  feetransfers(\\n    sortBy: $internal_commands_sort_by\\n    limit: $internal_commands_limit\\n    query: $internal_commands_query\\n  ) {\\n    blockHeight\\n    blockStateHash {\\n      stateHash\\n    }\\n    fee\\n    type\\n    dateTime\\n    canonical\\n  }\\n  snarks(sortBy: $snarks_sort_by, limit: $snarks_limit, query: $snarks_query) {\\n    canonical\\n    blockHeight\\n    block {\\n      stateHash\\n    }\\n    fee\\n    dateTime\\n    prover\\n  }\\n  blocks(sortBy: $blocks_sort_by, limit: $blocks_limit, query: $blocks_query) {\\n    canonical\\n    blockHeight\\n    stateHash\\n    dateTime\\n    protocolState {\\n      consensusState {\\n        slot\\n        slotSinceGenesis\\n      }\\n    }\\n    creatorAccount {\\n      publicKey\\n    }\\n    snarkJobs {\\n      blockHeight\\n    }\\n    transactions {\\n      coinbase\\n      userCommands {\\n        blockHeight\\n      }\\n      coinbaseReceiverAccount {\\n        publicKey\\n      }\\n    }\\n  }\\n  accounts(limit: 1, query: $account_query) {\\n    balance\\n    username\\n    nonce\\n    delegate\\n    is_genesis_account\\n  }\\n}\\n","operationName":"AccountActivityQuery"}'

variables:

{
   "variables":{
      "blocks_query":{
         "creatorAccount":{
            "publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"
         },
         "canonical":true
      },
      "blocks_limit":25,
      "blocks_sort_by":"BLOCKHEIGHT_DESC",
      "snarks_sort_by":"BLOCKHEIGHT_DESC",
      "snarks_limit":25,
      "snarks_query":{
         "prover":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc",
         "canonical":true,
         "block":{
            "creatorAccount":{
               "publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"
            }
         }
      },
      "trans_limit":25,
      "trans_sort_by":"BLOCKHEIGHT_DESC",
      "outgoing_trans_query":{
         "from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc",
         "canonical":true
      },
      "incoming_trans_query":{
         "canonical":true,
         "to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"
      },
      "account_query":{
         "publicKey":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc"
      },
      "internal_commands_limit":25,
      "internal_commands_sort_by":"BLOCKHEIGHT_DESC",
      "internal_commands_query":{
         "recipient":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc",
         "canonical":true
      }
   }
}
robinbb commented 1 month ago

By running this on the command line, I am able to get a response. So, the mina-indexer is probably returning a valid response, but taking way too long to do it.

robinbb commented 1 month ago

{"data":{"incoming_transactions":[{"canonical":true,"fee":1079130,"from":"B62qkMoc8ULsAAvJJTqWbLbRZHmzLqfaoWzXFWmUWViS8k8GRJu2Hyx","hash":"CkpZhM2Q8aKyFPtD5nT8gheU94WJXEuPA4Ga2xu9uX8fZsMFyRpCn","to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","amount":486550,"block":{"dateTime":"2023-05-20T15:21:00.000Z"},"blockHeight":253191,"nonce":25,"kind":"PAYMENT","failureReason":"","memo":"airdropmina.info - Airdrop #1"},{"canonical":true,"fee":1062140,"from":"B62qpJETHj7HXHvXxALB9FMZfvCfS2HXH42im1w2t8jiyHAMLRcS2Tv","hash":"CkpZkrUFjvimz62qm2guqVTdGMMyR48b9RkXFd8LJmHT8nrvRLjxx","to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","amount":582560,"block":{"dateTime":"2022-05-29T21:45:00.000Z"},"blockHeight":142771,"nonce":1,"kind":"PAYMENT","failureReason":"","memo":"airdrop-mina.org - Airdrop #5"},{"canonical":true,"fee":1000000,"from":"B62qmAM6eyHakVLF1AX7EWFaQcV33tWYtHC5mapJym55JfR7uaFsof3","hash":"CkpZNh69qqQkTGW3x1vAT5bGnTFbNp1RVkRRVytQMgACDpQBtj335","to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","amount":100000,"block":{"dateTime":"2022-05-23T00:39:00.000Z"},"blockHeight":140541,"nonce":1,"kind":"PAYMENT","failureReason":"","memo":"airdropmina.com - Airdrop #3"},{"canonical":true,"fee":6291670,"from":"B62qivFPFueT31hUf6u1Dh97bq3R2dtJhWrn1g2aeF95wXRypDLTHk3","hash":"CkpYWA4PZVn54vGVjUyDN1weGLfiSNUsQH14uvY9r3jYsfZWoCX5z","to":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","amount":0,"block":{"dateTime":"2021-08-06T11:39:00.000Z"},"blockHeight":48585,"nonce":0,"kind":"STAKE_DELEGATION","failureReason":"","memo":""}],"outgoing_transactions":[{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZUu1NUd6oVpvvFVxRWLiYXnKYFt1dGZ39aJfndKCgCzwguTbRo","to":"B62qnD7g1EB52vfKuug1gT8CMN5BRLiX1Nqm761Wv4ywi69YFFJNqXv","amount":5586973,"block":{"dateTime":"2023-08-02T18:54:00.000Z"},"blockHeight":275024,"nonce":10765,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYVQnYxJSYvj8Egm67ApEkTXMTLSuhuDSv4QmnJ5J4apJJPDQDx","to":"B62qpivxD4FiYQPef7J4dFKqZtWwCrfcXFieUfjueqJLcMNuXDK9H9G","amount":28603740861,"block":{"dateTime":"2023-08-02T18:54:00.000Z"},"blockHeight":275024,"nonce":10764,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYm4hFPah3yf4UJ8rnRPcrSj42XKCutu6bNYKk6bj56NDoWSW3Z","to":"B62qkycWWbakVZEqv89nnHK9HfHBALwHMUz3V97jKLwTsHVMRSKtDwT","amount":94888890,"block":{"dateTime":"2023-08-02T18:54:00.000Z"},"blockHeight":275024,"nonce":10763,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZtdZ1h1aCdVe2q55jrDE5cjfzXfm3SuM5zvavEiQQ7vcW1Nefy","to":"B62qmyGr8NGjwiG3iH7spEjnP3Jmvk1DjnTTPV2idiPPK1HEs2nKo9n","amount":9387207,"block":{"dateTime":"2023-08-02T18:54:00.000Z"},"blockHeight":275024,"nonce":10762,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"Ckpa3ZdJyrK4Mpg2AcdydRmNRjUQsrSNGyVMbUvKRZdcQpF1hyJGE","to":"B62qjjEDt4r2pWxrhupmWd6wxDoXNJtwx6mftZUYUGgLEEAaJ55JV5Q","amount":4302755360,"block":{"dateTime":"2023-08-02T18:54:00.000Z"},"blockHeight":275024,"nonce":10761,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZWCg5HNvYPbeYsNypKL9hSf7F9yeH62U4FrrcC8PLBBhViUihX","to":"B62qo8ekFbxcnCY7d86zcQrPdNeSfD8gHcFkCqXPGdFxC1BWp3KG4S3","amount":23969807,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10760,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYurm8gSLjUtukCbu2vzm6159TVjtx6XJHnwoL2AtNs4qaCc3rK","to":"B62qmEofYsDUnFx8bvuw5mJ9ZEPzirgJRDR1WGX7XjnmQfQfzNzDLeK","amount":3190159,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10759,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYw97pZ49DVqcaLQtPj4YD89B5fEFfy1u6fsqeqEJvbUyXnUbaa","to":"B62qqkTheZTprKVRMFbBgaDMMHbVkGv784zSz9e3sTTCEEbe2mg7aNQ","amount":71442968,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10758,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZUvCM2ed4VJE5yow9iKrFFtzQCq3R9c96kaDvcLdRR8snYiirR","to":"B62qj5fjGXLRBeHLNyEY31uFD6Pnc52nmXP8FBxim1WytdfJzXEcPXj","amount":138419628,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10757,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZdT6gaKeATjhH6kFKQFMfMdCR5G7QpyVUcmK1CDfV2N8Sz94VG","to":"B62qmMPMf3nDEMSaJ74D1mLdfGfX1ZhjvHiLA6iHYWGFkQrxx2fosgV","amount":8952630,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10756,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYvYDitYhgg13m1UZsTp4mtx4iEGnVfVGgqBCRdNLz6WqwfnMMc","to":"B62qjA5MxykwDPzv4xbjQRHDxtqkefMP67gvPPKAvMA7A7HqT8YpNq9","amount":158298112,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10755,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZQFc5gA7Yshd1BVmYB4tTJcs4w7dpfArXp9cesn3cXaUX9rQrB","to":"B62qpDfLCUJFADJTvF23SeFW8K4fhxn7JyVhpe9ALfXq5KbuiVQJmGJ","amount":1862202590,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10754,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYgmhWSMyzKghL25hwcJjS5gcHJpVhAbXGh2zzWSdjQ4Achpzux","to":"B62qr14sgZwQSHELmPymnEHp1LqdmV8kA3jSNyqireCRR7wJrZaLMSX","amount":304874,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10753,"kind":"PAYMENT","failureReason":"","memo":"FPayment"}
,{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZsd9guEoAqviu4ytCLvMM3SCnWQQ5PzHfPV2FHRv4QYekXxkaZ","to":"B62qjkL1vpySqq
cZePvJ3hE16hWCvtf8EDPWiaKvXgPNbbyjoGj4YhZ","amount":15306414,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10752,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZs17XYpqtMeStxUgjiXxvZD9WRmpeGPTypLkJwGVJG3CimpMjs","to":"B62qn7JrFAu3JSCZWzKf6GgN1CuYHrRot6W5bCcfD167gxv4zeJpWFc","amount":3031418,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10751,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYmgUu99PZcYCgk7icRSjXgF1codwYpMUg7BDPoQNMe7bRs6CxS","to":"B62qinPHXSpUKcxfsp3NeZUpuFqq4nvkhQ3yxnH9AowPH23znkJTQVF","amount":472291184,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10750,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"Ckpa9SfGCt7Ee7nk2W6DXsFNf4Twq1b7ZTx33QALAQ3mf4Qr179EP","to":"B62qjwPWDz3HiaLpBAyn7XiZsAxW9sG9bdZDGJEkf2iuBsvDE2s7iKf","amount":60074387378,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10749,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZvcAr47HNQapEiQsSLnqbE6jpC2xHfYhPNnv7UvM1LVosyy8tW","to":"B62qmwjQP8Z9i5vV1bddR9eMHf7qhfDmg2nQRG2XyRezwrWBaVf7ikK","amount":413414092,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10748,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"Ckpa27gH5r9zDitPxei8CPQVoHS5icUYmURGVW3oBxM8utBJbqNLW","to":"B62qoiXV8hQ2W9jkoZ5Q6Kq3ZzbQuzRzBk9vsjNsWbR1u3VgFcnaFNJ","amount":598836128,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10747,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpaGCcdbjQ76npBPp9vpV7dufHEAvYvJtvQLfW36EDmHzQazEfhW","to":"B62qq8sm8HemutQiT6VuDKNWKLAi1Tvz1jrnttVajpL8zdaXMq6M9gu","amount":30762998408607,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10746,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZZcHm4vFQh5h5sxfxaRab3YAanroERqiBCkKtjSW7ZtWpjSuTm","to":"B62qnWHiyc1qagGMu7pA8hM29Fkv9QnV1HYacD2VSFMygu2rX7UF9HU","amount":5887713,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10745,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYumsCNmFatx4fUfh9DC84s3cSngoYFuDkSFYYWoY1cFtEYkXVh","to":"B62qnss6v7VQGQbLTuPi6wAvMgd3RaEHySRLE4rpnvheXKMXYQtnbpg","amount":26265416,"block":{"dateTime":"2023-08-02T18:48:00.000Z"},"blockHeight":275023,"nonce":10744,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpYdRwnwKtKrpbpf28wiuvDE3mTkkB5NVExzNFo2o9W9vkpBPYRH","to":"B62qmpjddhjw6YQJN6wXWfufHKBUVqVZiQpSLbj8MK8NTGgjcVPujV2","amount":3487721,"block":{"dateTime":"2023-08-02T18:39:00.000Z"},"blockHeight":275022,"nonce":10743,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZUGEAmVfPXPqrej8y1yJnuQqU3Wx6kbGSUgjZ9JiCRDsVgQFgQ","to":"B62qqY5dDYFasacDArTGv6nH6X7K3c5V6qaK6Twse8g4Xp2kg6hQVUW","amount":4601197,"block":{"dateTime":"2023-08-02T18:39:00.000Z"},"blockHeight":275022,"nonce":10742,"kind":"PAYMENT","failureReason":"","memo":"FPayment"},{"canonical":true,"fee":15000000,"from":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","hash":"CkpZWAtnhAs2EsigZXYfdHMytrZcAbi8rVkUYA4LTSf8aiCoqruhF","to":"B62qp1L4KGuDpj5rfcoWvYjDQwwPKMpPdMTtj447TwzV11g5Z7A7rMH","amount":54611959,"block":{"dateTime":"2023-08-02T18:39:00.000Z"},"blockHeight":275022,"nonce":10741,"kind":"PAYMENT","failureReason":"","memo":"FPayment"}],"feetransfers":[{"blockHeight":2,"blockStateHash":{"stateHash":"3NLyWnjZqUECniE1q719CoLmes6WDQAod4vrTeLfN7XXJbHv6EHH"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T00:03:00.000Z","canonical":true},{"blockHeight":24,"blockStateHash":{"stateHash":"3NLmTNxxLQ9YvdRgwgTTw67DkEHNkD7BxukW1cWemkhWKqdzCPE6"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T01:33:00.000Z","canonical":true},{"blockHeight":24,"blockStateHash":{"stateHash":"3NLmTNxxLQ9YvdRgwgTTw67DkEHNkD7BxukW1cWemkhWKqdzCPE6"},"fee":30000000,"type":"Fee_transfer","dateTime":"2021-03-17T01:33:00.000Z","canonical":true},{"blockHeight":27,"blockStateHash":{"stateHash":"3NKgxWDjLCiUopApJ1TBN6GoJAw2c77JCAiLun78Q3rTE6dPNUTJ"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T01:42:00.000Z","canonical":true},{"blockHeight":27,"blockStateHash":{"stateHash":"3NKgxWDjLCiUopApJ1TBN6GoJAw2c77JCAiLun78Q3rTE6dPNUTJ"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T01:42:00.000Z","canonical":true},{"blockHeight":40,"blockStateHash":{"stateHash":"3NKjssd1iCRU3aQPdi6o4AueRiaSMVk8NhVw48DSMQzBwrexCnDr"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T02:27:00.000Z","canonical":true},{"blockHeight":40,"blockStateHash":{"stateHash":"3NKjssd1iCRU3aQPdi6o4AueRiaSMVk8NhVw48DSMQzBwrexCnDr"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T02:27:00.000Z","canonical":true},{"blockHeight":67,"blockStateHash":{"stateHash":"3NLuR1ekDJndXWgJK19ApUtTKFaqdLKbLXTtBbGVM3YjAtC3AkjG"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T04:30:00.000Z","canonical":true},{"blockHeight":67,"blockStateHash":{"stateHash":"3NLuR1ekDJndXWgJK19ApUtTKFaqdLKbLXTtBbGVM3YjAtC3AkjG"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T04:30:00.000Z","canonical":true},{"blockHeight":100,"blockStateHash":{"stateHash":"3NKLtRnMaWAAfRvdizaeaucDPBePPKGbKw64RVcuRFtMMkE8aAD4"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T07:15:00.000Z","canonical":true},{"blockHeight":100,"blockStateHash":{"stateHash":"3NKLtRnMaWAAfRvdizaeaucDPBePPKGbKw64RVcuRFtMMkE8aAD4"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T07:15:00.000Z
","canonical":true},{"blockHeight":103,"blockStateHash":{"stateHash":"3NLgCN1a7BzAEjEGptDZpi9bh8qArpyh3KNMDetQnBAiVYd6exoT"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-
17T07:33:00.000Z","canonical":true},{"blockHeight":103,"blockStateHash":{"stateHash":"3NLgCN1a7BzAEjEGptDZpi9bh8qArpyh3KNMDetQnBAiVYd6exoT"},"fee":20000000,"type":"Fee_transfer","dateTime":"2021-03-17T07:33:00.000Z","canonical":true},{"blockHeight":121,"blockStateHash":{"stateHash":"3NKEm5TYpXwxqLHNqpkGWX1QAV8g43rXmcYhxKmh1CcMC3v9oZ5D"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T08:42:00.000Z","canonical":true},{"blockHeight":121,"blockStateHash":{"stateHash":"3NKEm5TYpXwxqLHNqpkGWX1QAV8g43rXmcYhxKmh1CcMC3v9oZ5D"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T08:42:00.000Z","canonical":true},{"blockHeight":129,"blockStateHash":{"stateHash":"3NLcCBE6dDQisz94nbKuWBQwSZqS1kjWyygF6odLcep2aPgRcN3j"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T09:15:00.000Z","canonical":true},{"blockHeight":129,"blockStateHash":{"stateHash":"3NLcCBE6dDQisz94nbKuWBQwSZqS1kjWyygF6odLcep2aPgRcN3j"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T09:15:00.000Z","canonical":true},{"blockHeight":147,"blockStateHash":{"stateHash":"3NKqiwsxvNiQDGoxdRCpNLWRYrVdFMT6bLurE6rCc1f7nxt88iJQ"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T10:33:00.000Z","canonical":true},{"blockHeight":147,"blockStateHash":{"stateHash":"3NKqiwsxvNiQDGoxdRCpNLWRYrVdFMT6bLurE6rCc1f7nxt88iJQ"},"fee":30000000,"type":"Fee_transfer","dateTime":"2021-03-17T10:33:00.000Z","canonical":true},{"blockHeight":157,"blockStateHash":{"stateHash":"3NLee6vS1JUYmYGq9qeBEyLK9zB9DVA865NbNdoS5EsgKeHBewmq"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T11:15:00.000Z","canonical":true},{"blockHeight":157,"blockStateHash":{"stateHash":"3NLee6vS1JUYmYGq9qeBEyLK9zB9DVA865NbNdoS5EsgKeHBewmq"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T11:15:00.000Z","canonical":true},{"blockHeight":159,"blockStateHash":{"stateHash":"3NLt7yR2AoX8exdJDLSyUrxqL7MyyJr4pDmt6QQxP8fe8TYc5amc"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T11:21:00.000Z","canonical":true},{"blockHeight":159,"blockStateHash":{"stateHash":"3NLt7yR2AoX8exdJDLSyUrxqL7MyyJr4pDmt6QQxP8fe8TYc5amc"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T11:21:00.000Z","canonical":true},{"blockHeight":182,"blockStateHash":{"stateHash":"3NL9q3zMuJwTuru1CSBHFBkSCrqZJnRWHyCtWAid2tMubtVms8CC"},"fee":720000000000,"type":"Coinbase","dateTime":"2021-03-17T12:57:00.000Z","canonical":true},{"blockHeight":182,"blockStateHash":{"stateHash":"3NL9q3zMuJwTuru1CSBHFBkSCrqZJnRWHyCtWAid2tMubtVms8CC"},"fee":10000000,"type":"Fee_transfer","dateTime":"2021-03-17T12:57:00.000Z","canonical":true}],"snarks":[],"blocks":[],"accounts":[{"balance":114346520102957,"username":"Unknown","nonce":10766,"delegate":"B62qqa9g4CFfkSuX2j22S52z6UfcDcS9tMTgQrFKZ21v7GrEP6Zu5Tc","is_genesis_account":false}]}}```