{"id":22389302,"url":"https://github.com/berzanorg/aptos-social-network-contract","last_synced_at":"2026-02-27T11:05:52.843Z","repository":{"id":197009915,"uuid":"697809521","full_name":"berzanorg/aptos-social-network-contract","owner":"berzanorg","description":"Move module for Aptos Social Network dApp.","archived":false,"fork":false,"pushed_at":"2023-10-01T16:44:51.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T16:09:38.562Z","etag":null,"topics":["aptos","dapp","move","smart-contracts"],"latest_commit_sha":null,"homepage":"https://berzanxyz.github.io/aptos-social-network-interface","language":"Move","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/berzanorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-09-28T14:18:02.000Z","updated_at":"2024-08-26T05:59:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"b58da695-2929-42cd-b5eb-1a47250f9d3c","html_url":"https://github.com/berzanorg/aptos-social-network-contract","commit_stats":null,"previous_names":["berzanxyz/aptos-social-network-contract","berzanorg/aptos-social-network-contract"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/berzanorg/aptos-social-network-contract","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berzanorg%2Faptos-social-network-contract","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berzanorg%2Faptos-social-network-contract/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berzanorg%2Faptos-social-network-contract/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berzanorg%2Faptos-social-network-contract/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/berzanorg","download_url":"https://codeload.github.com/berzanorg/aptos-social-network-contract/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berzanorg%2Faptos-social-network-contract/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29892063,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T09:48:51.284Z","status":"ssl_error","status_checked_at":"2026-02-27T09:48:43.992Z","response_time":57,"last_error":"SSL_read: 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":["aptos","dapp","move","smart-contracts"],"created_at":"2024-12-05T03:10:17.357Z","updated_at":"2026-02-27T11:05:50.676Z","avatar_url":"https://github.com/berzanorg.png","language":"Move","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aptos-social-network-contract\nMove module for Aptos Social Network dApp.\n\nThe dApp is live at [`berzanxyz.github.io`](https://berzanxyz.github.io/aptos-social-network-interface).\n\nAn interface for Aptos Social Network resides in [`aptos-social-network-interface`](https://github.com/berzanxyz/aptos-social-network-interface).\n\nEvents and tests are not implemented as this project is very basic.\n\n## Getting Ready\n- Clone the repo with `git clone https://github.com/berzanxyz/aptos-social-network-contract.git`\n- You can use Dev Containers for getting the development environment ready.\n\n\n## Developing\n\n### Compile:\n```sh\naptos move compile\n```\n\n### Publish:\n```sh\naptos move publish\n```\n\n## Interacting With The Contract\n\n### Initialize the social network:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::init\n```\n\n### Create a user profile:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::create_user_profile --args 'string:\u003cNAME\u003e' 'string:\u003cBIO\u003e' 'string:\u003cPFP-URL\u003e'\n```\n\n### Update a user profile:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::update_user_profile --args 'string:\u003cNAME\u003e' 'string:\u003cBIO\u003e' 'string:\u003cPFP-URL\u003e'\n```\n\n### Make a post:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::make_post --args 'string:\u003cCONTENT\u003e' 'string:\u003cIMAGE-URL or none\u003e'\n```\n\n### Make a comment:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::make_comment --args 'address:\u003cPOST-OWNER-ADDRESS\u003e' 'u64:\u003cPOST-INDEX\u003e' 'string:\u003cCOMMENT-CONTENT\u003e'\n```\n\n### Like a post:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::like_post --args 'address:\u003cPOST-OWNER-ADDRESS\u003e' 'u64:\u003cPOST-INDEX\u003e'\n```\n\n### Like a comment:\n```sh\naptos move run --function-id \u003cMODULE-ADDRESS\u003e::social_network::like_comment --args 'address:\u003cPOST-OWNER-ADDRESS\u003e' 'u64:\u003cPOST-INDEX\u003e' 'u64:\u003cCOMMENT-INDEX\u003e'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberzanorg%2Faptos-social-network-contract","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberzanorg%2Faptos-social-network-contract","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberzanorg%2Faptos-social-network-contract/lists"}