{"id":20800890,"url":"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1","last_synced_at":"2025-05-11T16:31:56.936Z","repository":{"id":238300247,"uuid":"796222528","full_name":"Bucket-Protocol/sui-dapp-scaffold-v1","owner":"Bucket-Protocol","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-24T04:05:19.000Z","size":553,"stargazers_count":12,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-25T04:27:01.294Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/Bucket-Protocol.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-05-05T10:07:01.000Z","updated_at":"2024-08-24T04:05:22.000Z","dependencies_parsed_at":"2024-08-24T04:27:01.657Z","dependency_job_id":null,"html_url":"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1","commit_stats":null,"previous_names":["bucket-protocol/sui-dapp-scaffold-v1"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bucket-Protocol%2Fsui-dapp-scaffold-v1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bucket-Protocol%2Fsui-dapp-scaffold-v1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bucket-Protocol%2Fsui-dapp-scaffold-v1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bucket-Protocol%2Fsui-dapp-scaffold-v1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bucket-Protocol","download_url":"https://codeload.github.com/Bucket-Protocol/sui-dapp-scaffold-v1/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225073009,"owners_count":17416536,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-17T18:16:02.814Z","updated_at":"2024-11-17T18:16:06.804Z","avatar_url":"https://github.com/Bucket-Protocol.png","language":"TypeScript","funding_links":[],"categories":["dApp Development"],"sub_categories":["dApp Toolkits"],"readme":"# Sui dApp Frontend Scaffold\n\nYour super kit to build dApp on Sui\n\nThis project provides a frontend scaffold for a decentralized application (dApp) on the Sui blockchain. It uses next.js page router, shadcn/ui for UI library, @mysten/dapp-kit for interacting with Sui contracts, and bucket-protocol-SDK for additional blockchain interactions.\n\n\u003cimg width=\"1512\" alt=\"image\" src=\"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1/assets/50972884/7ba8fa56-e0e7-4f4f-a8ee-75a97688b18c\"\u003e\n\nPowered by Bucket Protocol.\n\n## Packages\n* [next.js](https://nextjs.org/): Utilized for the foundational framework, supporting SSR and optimized page routing.\n* [tailwind](https://tailwindcss.com/): Rapidly build modern websites without ever leaving your HTML.\n* [shadcn/ui](https://ui.shadcn.com/): Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.\n* [@mysten/dapp-kit](https://www.npmjs.com/package/@mysten/dapp-kit): Provides hooks and components for querying data from the Sui blockchain, and connecting to Sui wallets.\n* [bucket-protocol-sdk](https://github.com/Bucket-Protocol/bucket-protocol-sdk): Enhances capabilities with Sui blockchain features.\n\n## Features\n\n* Headless, fully customizable UI component\n* Save 80% of the initial setting time. You can build your project/product way faster\n\n## Components\n* Basic series\n  * BasicDataField\n    ```Typescript\n    import BasicDataField from \"@/components/fields/basicDataField\";\n    \n    \u003cBasicDataField\n      label=\"Your Wallet Balance\"\n      value={userBalance ?? \"0.0000\"}\n      spaceWithUnit\n      unit=\"SUI\"\n      minFractionDigits={0}\n    /\u003e\n    ```\n    \u003cimg width=\"165\" alt=\"image\" src=\"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1/assets/50972884/8a900e28-7576-43d8-9f57-1655ee96adc3\"\u003e\n\n  * BasicInputField\n    ```Typescript\n    import BasicInputField from \"@/components/fields/basicInputField\";\n    \n    \u003cBasicInputField\n      label=\"Input\"\n      inputValue={value}\n      setInputValue={setInputValue}\n      tokenInfo={[\"SUI\", \"BUCK\", \"USDC\", \"USDT\"]}\n      canSelectToken={true}\n      selectedToken={selectedToken}\n      setSelectedToken={setSelectedToken}\n      maxValue={0.0}\n    /\u003e\n    ```\n    \u003cimg width=\"1202\" alt=\"image\" src=\"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1/assets/50972884/b6e23e4b-2369-498e-a409-9e5821ccf8d6\"\u003e\n* ConnectMenu\n  ```Typescript\n  import ConnectMenu from \"@/components/ui/connectMenu\";\n\n  \u003cConnectMenu walletAddress={walletAddress} suiName={suiName} /\u003e\n  ```\n  \u003cimg width=\"315\" alt=\"image\" src=\"https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1/assets/50972884/e05dcae4-c163-4251-b413-e97bc226c9e9\"\u003e\n\n* MetaTagsContainer\n  * Open graph metadata is a key point for a web app. Most common settings are gathered in this component.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBucket-Protocol%2Fsui-dapp-scaffold-v1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FBucket-Protocol%2Fsui-dapp-scaffold-v1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBucket-Protocol%2Fsui-dapp-scaffold-v1/lists"}