Retry pauses now uses kangda's 4,8,16,20,30 seconds pauses.

This commit is contained in:
Geoff Taylor 2021-05-28 17:20:07 +01:00
parent ba25e289af
commit 7bf7cff474
2 changed files with 38 additions and 740 deletions

View File

@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "intellectual-solomon",
"id": "frozen-extra",
"metadata": {},
"source": [
"# ⚠ Warning\n",
@ -16,7 +16,7 @@
},
{
"cell_type": "markdown",
"id": "linear-fountain",
"id": "accurate-sector",
"metadata": {},
"source": [
"# 🥭 Context\n",
@ -26,7 +26,7 @@
},
{
"cell_type": "markdown",
"id": "structured-growth",
"id": "unknown-creativity",
"metadata": {},
"source": [
"## Environment Variables\n",
@ -41,7 +41,7 @@
},
{
"cell_type": "markdown",
"id": "black-mechanism",
"id": "boxed-capability",
"metadata": {},
"source": [
"## Provided Configured Objects\n",
@ -61,7 +61,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "indirect-football",
"id": "later-buying",
"metadata": {
"jupyter": {
"source_hidden": true
@ -86,7 +86,7 @@
},
{
"cell_type": "markdown",
"id": "infrared-insured",
"id": "bulgarian-england",
"metadata": {},
"source": [
"## Context class"
@ -95,7 +95,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "silent-currency",
"id": "prescription-listing",
"metadata": {},
"outputs": [],
"source": [
@ -112,7 +112,10 @@
" self.group_id: PublicKey = group_id\n",
" self.commitment: Commitment = Single\n",
" self.encoding: str = \"base64\"\n",
" self.retry_pauses = [Decimal(1), Decimal(2), Decimal(4), Decimal(8), Decimal(16), Decimal(32)]\n",
"\n",
" # kangda said in Discord: https://discord.com/channels/791995070613159966/836239696467591186/847816026245693451\n",
" # \"I think you are better off doing 4,8,16,20,30\"\n",
" self.retry_pauses = [Decimal(4), Decimal(8), Decimal(16), Decimal(20), Decimal(30)]\n",
"\n",
" def fetch_sol_balance(self, account_public_key: PublicKey) -> Decimal:\n",
" result = self.client.get_balance(account_public_key, commitment=self.commitment)\n",
@ -233,7 +236,7 @@
},
{
"cell_type": "markdown",
"id": "biblical-header",
"id": "instrumental-privilege",
"metadata": {},
"source": [
"## default_context object\n",
@ -244,7 +247,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "assumed-appreciation",
"id": "ongoing-pittsburgh",
"metadata": {},
"outputs": [],
"source": [
@ -263,7 +266,7 @@
},
{
"cell_type": "markdown",
"id": "modified-relative",
"id": "psychological-blanket",
"metadata": {},
"source": [
"## solana_context object\n",
@ -274,7 +277,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "satisfied-hayes",
"id": "comfortable-corporation",
"metadata": {},
"outputs": [],
"source": [
@ -286,7 +289,7 @@
},
{
"cell_type": "markdown",
"id": "large-investigator",
"id": "different-alias",
"metadata": {},
"source": [
"## serum_context object\n",
@ -297,7 +300,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "transparent-airplane",
"id": "constitutional-position",
"metadata": {},
"outputs": [],
"source": [
@ -309,7 +312,7 @@
},
{
"cell_type": "markdown",
"id": "recovered-wiring",
"id": "charged-plaintiff",
"metadata": {},
"source": [
"# 🏃 Running\n",
@ -320,7 +323,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "insured-mirror",
"id": "comparative-fancy",
"metadata": {},
"outputs": [],
"source": [

View File

@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "wrong-underground",
"id": "continental-protein",
"metadata": {},
"source": [
"# ⚠ Warning\n",
@ -16,7 +16,7 @@
},
{
"cell_type": "markdown",
"id": "private-accident",
"id": "drawn-valve",
"metadata": {},
"source": [
"# 🥭 Retrier\n",
@ -26,9 +26,13 @@
},
{
"cell_type": "code",
"execution_count": 1,
"id": "resident-forth",
"metadata": {},
"execution_count": null,
"id": "strategic-seating",
"metadata": {
"jupyter": {
"source_hidden": true
}
},
"outputs": [],
"source": [
"import logging\n",
@ -42,7 +46,7 @@
},
{
"cell_type": "markdown",
"id": "broke-quantum",
"id": "large-bosnia",
"metadata": {},
"source": [
"# RetryWithPauses class\n",
@ -62,8 +66,8 @@
},
{
"cell_type": "code",
"execution_count": 2,
"id": "sublime-establishment",
"execution_count": null,
"id": "reported-muscle",
"metadata": {},
"outputs": [],
"source": [
@ -109,7 +113,7 @@
},
{
"cell_type": "markdown",
"id": "finnish-paper",
"id": "handled-channel",
"metadata": {},
"source": [
"# retry_context generator\n",
@ -126,8 +130,8 @@
},
{
"cell_type": "code",
"execution_count": 3,
"id": "indoor-water",
"execution_count": null,
"id": "swedish-thermal",
"metadata": {},
"outputs": [],
"source": [
@ -138,7 +142,7 @@
},
{
"cell_type": "markdown",
"id": "hearing-expansion",
"id": "current-validation",
"metadata": {},
"source": [
"# 🏃 Running\n",
@ -148,719 +152,10 @@
},
{
"cell_type": "code",
"execution_count": 4,
"id": "played-jordan",
"execution_count": null,
"id": "stopped-heavy",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:10 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:10 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n",
"2021-05-28 14:32:11 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:11 ⓘ RetryWithDel Will retry [Group Account Loader] call in 2 second(s).\n",
"2021-05-28 14:32:13 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:13 ⓘ RetryWithDel Will retry [Group Account Loader] call in 4 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:19 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:19 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:21 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:21 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:24 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:24 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:26 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:26 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:28 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:28 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-05-28 14:32:30 ⓘ RetryWithDel Retriable call [Group Account Loader] rate limited (too many requests) with error '429 Client Error: Too Many Requests for url: https://api.rpcpool.com/'.\n",
"2021-05-28 14:32:30 ⓘ RetryWithDel Will retry [Group Account Loader] call in 1 second(s).\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n",
"« AccountInfo [7pVYhpKUHw88neQHxgExSH6cerMZ1Axx1ALQP9sxtvQV]:\n",
" Owner: JD3bq9hGdy38PuWQ4h2YJpELmHVGPPfFSuFkpzAd9zfu\n",
" Executable: False\n",
" Lamports: 6069120\n",
" Rent Epoch: 186\n",
"»\n"
]
}
],
"outputs": [],
"source": [
"if __name__ == \"__main__\":\n",
" logging.getLogger().setLevel(logging.INFO)\n",