{"id":30459549,"url":"https://github.com/youneedwork/aptos-pump-fun","last_synced_at":"2026-02-10T23:31:36.413Z","repository":{"id":285545182,"uuid":"869641590","full_name":"YouNeedWork/aptos-pump-fun","owner":"YouNeedWork","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-31T07:47:57.000Z","size":51,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T18:40:59.779Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Move","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/YouNeedWork.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}},"created_at":"2024-10-08T16:28:49.000Z","updated_at":"2025-03-31T07:49:12.000Z","dependencies_parsed_at":"2025-04-01T11:12:06.951Z","dependency_job_id":null,"html_url":"https://github.com/YouNeedWork/aptos-pump-fun","commit_stats":null,"previous_names":["youneedwork/aptos-pump-fun"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YouNeedWork/aptos-pump-fun","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YouNeedWork%2Faptos-pump-fun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YouNeedWork%2Faptos-pump-fun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YouNeedWork%2Faptos-pump-fun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YouNeedWork%2Faptos-pump-fun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YouNeedWork","download_url":"https://codeload.github.com/YouNeedWork/aptos-pump-fun/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YouNeedWork%2Faptos-pump-fun/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29321337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"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":[],"created_at":"2025-08-23T18:30:37.490Z","updated_at":"2026-02-10T23:31:36.393Z","avatar_url":"https://github.com/YouNeedWork.png","language":"Move","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pump-fun-on-aptos/movement\n\n## Contract Link\n\n```\nhttps://explorer.movementnetwork.xyz/account/0x4070b42af7f923a0dcef7764b9a8bb613cc4a5fb59b6f9b4d81d11384ed0745b/transactions?network=testnet\n```\n\n## Token Template\n\n```move\nmodule 0x7f3d4f0094a49421bdfca03366fa02add69d9091c76a4a0fe498caa163886fc0::AASS {\n    struct AASS {}\n}\n```\n\nNote: You need to replace:\n- The `0x` part with your wallet address\n- `AASS` (in both places) with your symbol\nAfter compiling, return to the frontend, and the frontend will publish a tx to the blockchain to deploy the token contract.\n\n## Deploying PumpFun and Buying Simultaneously\n\n```move\nentry public fun deploy\u003cCoinType\u003e(\n    caller: \u0026signer,\n    description: String,\n    name: String,\n    symbol: String,\n    uri: String,\n    website: String,\n    telegram: String,\n    twitter: String,\n)\n```\n\nParameters and types (fill in as directed):\n- description: String\n- name: String\n- symbol: String\n- uri: String\n- website: String\n- telegram: String\n- twitter: String\n\nYou'll need one type argument - fill in with the Token address you created in the previous step:\n```\n0x7f3d4f0094a49421bdfca03366fa02add69d9091c76a4a0fe498caa163886fc0::AASS::AASS\n```\n\n### Deploy and Buy Function\n\n```move\nentry public fun deploy_and_buy\u003cCoinType\u003e(\n    caller: \u0026signer,\n    out_amount: u64,\n    description: String,\n    name: String,\n    symbol: String,\n    uri: String,\n    website: String,\n    telegram: String,\n    twitter: String,\n)\n```\n\nThis adds one new parameter compared to `deploy`: `out_amount` as the first parameter.\n\n## Buy Function\n\n```move\npublic entry fun buy\u003cCoinType\u003e(\n    caller: \u0026signer,\n    out_amount: u64\n)\n```\n\nJust one parameter: the number of tokens to buy (`out_amount`).\n\nYou'll need one type argument - fill in with the Token address you created:\n```\n0x7f3d4f0094a49421bdfca03366fa02add69d9091c76a4a0fe498caa163886fc0::AASS::AASS\n```\n\n## Sell Function\n\n```move\npublic entry fun sell\u003cCoinType\u003e(\n    caller: \u0026signer, \n    out_amount: u64\n)\n```\n\nSimilar to the buy function.\n`out_amount` is the amount of APT to receive. It can match the estimated amount or be multiplied by a slippage factor to ensure success.\n\nYou'll need one type argument - fill in with the Token address you created:\n```\n0x7f3d4f0094a49421bdfca03366fa02add69d9091c76a4a0fe498caa163886fc0::AASS::AASS\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyouneedwork%2Faptos-pump-fun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyouneedwork%2Faptos-pump-fun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyouneedwork%2Faptos-pump-fun/lists"}