{"id":30452107,"url":"https://github.com/al-the-bot-father/meteora_dbc_py","last_synced_at":"2026-04-20T14:02:03.271Z","repository":{"id":308233946,"uuid":"1032097317","full_name":"AL-THE-BOT-FATHER/meteora_dbc_py","owner":"AL-THE-BOT-FATHER","description":"Meteora Dynamic Bonding Curve (DBC) with Python","archived":false,"fork":false,"pushed_at":"2025-08-05T20:45:37.000Z","size":55,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-23T18:20:38.078Z","etag":null,"topics":["bonding","bonding-curve","curve","dynamic","meteora","meteora-dbc","python","solana","swap"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AL-THE-BOT-FATHER.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-04T19:56:54.000Z","updated_at":"2025-08-05T20:45:40.000Z","dependencies_parsed_at":"2025-08-04T22:54:02.298Z","dependency_job_id":"4ca0d7ad-e2d6-403d-9a62-6849517feb7c","html_url":"https://github.com/AL-THE-BOT-FATHER/meteora_dbc_py","commit_stats":null,"previous_names":["al-the-bot-father/meteora_dbc_py"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AL-THE-BOT-FATHER/meteora_dbc_py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AL-THE-BOT-FATHER%2Fmeteora_dbc_py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AL-THE-BOT-FATHER%2Fmeteora_dbc_py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AL-THE-BOT-FATHER%2Fmeteora_dbc_py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AL-THE-BOT-FATHER%2Fmeteora_dbc_py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AL-THE-BOT-FATHER","download_url":"https://codeload.github.com/AL-THE-BOT-FATHER/meteora_dbc_py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AL-THE-BOT-FATHER%2Fmeteora_dbc_py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bonding","bonding-curve","curve","dynamic","meteora","meteora-dbc","python","solana","swap"],"created_at":"2025-08-23T14:39:19.557Z","updated_at":"2026-04-20T14:02:03.263Z","avatar_url":"https://github.com/AL-THE-BOT-FATHER.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# meteora_dbc_py\n\nPython library to trade on Meteora Dynamic Bonding Curve (DBC). \n\n```\npip install solana==0.36.1 solders==0.23.0\n```\n\nUpdated: 8/4/2025\n\n# Contact\n\nMy Telegram: https://t.me/AL_THE_BOT_FATHER\n\n\u003cimg width=\"200\" height=\"200\" alt=\"bot_mafia\" src=\"https://github.com/user-attachments/assets/b0c8ca7c-83c0-45e9-8007-be85f13a4b0a\" /\u003e\n\n# Instructions\n\nClone the repo and use example_buy.py or example_sell.py.\n\n**If you can - please support my work and donate to: 3pPK76GL5ChVFBHND54UfBMtg36Bsh1mzbQPTbcK89PD**\n\n# FAQS\n\n**What format should my private key be in?** \n\nThe private key should be in the base58 string format, not bytes. \n\n**Why are my transactions being dropped?** \n\nYou get what you pay for. Don't use the main-net RPC, just spend the money for Helius or Quick Node.\n\n**How do I change the fee?** \n\nModify the unit_budget and unit_price values. \n\n**Does this code work on devnet?**\n\nNo. \n\n# Example\n\n```\nfrom solana.rpc.api import Client\nfrom solders.keypair import Keypair  # type: ignore\n\nfrom pool_utils import fetch_pool_from_rpc\nfrom meteora_dbc import buy\n\n# Configuration\npriv_key = \"base58_priv_str_here\"\nrpc = \"rpc_url_here\"\nmint_str = \"meteora_dbc_address\"\nsol_in = 0.01\nunit_budget = 100_000\nunit_price = 1_000_000\n\n# Initialize client and keypair\nclient = Client(rpc)\npayer_keypair = Keypair.from_base58_string(priv_key)\n\n# Fetch pool and execute buy\npool_str = fetch_pool_from_rpc(client, mint_str)\n\nif pool_str:\n    buy(client, payer_keypair, pool_str, sol_in, unit_budget, unit_price)\nelse:\n    print(\"No pool address found...\")\n```\n\n```\nfrom solana.rpc.api import Client\nfrom solders.keypair import Keypair  # type: ignore\n\nfrom pool_utils import fetch_pool_from_rpc\nfrom meteora_dbc import sell\n\n# Configuration\npriv_key = \"base58_priv_str_here\"\nrpc = \"rpc_url_here\"\nmint_str = \"meteora_dbc_address\"\npercentage = 100\nunit_budget = 100_000\nunit_price = 1_000_000\n\n# Initialize client and keypair\nclient = Client(rpc)\npayer_keypair = Keypair.from_base58_string(priv_key)\n\n# Fetch pool and execute sell\npool_str = fetch_pool_from_rpc(client, mint_str)\n\nif pool_str:\n    sell(client, payer_keypair, pool_str, percentage, unit_budget, unit_price)\nelse:\n    print(\"No pool address found...\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal-the-bot-father%2Fmeteora_dbc_py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fal-the-bot-father%2Fmeteora_dbc_py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal-the-bot-father%2Fmeteora_dbc_py/lists"}