{"id":31832892,"url":"https://github.com/0xdeval/mycelium-sdk","last_synced_at":"2025-10-11T23:24:21.630Z","repository":{"id":318516100,"uuid":"1049956755","full_name":"0xdeval/mycelium-sdk","owner":"0xdeval","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-07T15:57:46.000Z","size":309,"stargazers_count":2,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-07T17:51:05.405Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xdeval.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-03T18:33:23.000Z","updated_at":"2025-10-07T16:22:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"bb33b048-ca5b-4d37-9f9c-c861c992e44b","html_url":"https://github.com/0xdeval/mycelium-sdk","commit_stats":null,"previous_names":["0xdeval/mycelium-sdk"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/0xdeval/mycelium-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdeval%2Fmycelium-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdeval%2Fmycelium-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdeval%2Fmycelium-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdeval%2Fmycelium-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xdeval","download_url":"https://codeload.github.com/0xdeval/mycelium-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdeval%2Fmycelium-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279009389,"owners_count":26084579,"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","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-10-11T23:24:20.541Z","updated_at":"2025-10-11T23:24:21.625Z","avatar_url":"https://github.com/0xdeval.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mycelium SDK\n\nA comprehensive TypeScript-based monorepo providing seamless access to ILD (Intelligent Liquidity Distribution) yield opportunities through Web3 protocols. This project includes the core SDK, a demo frontend application, and blockchain services for local development and testing.\n\n## Project structure\n\nThis monorepo is organized into three main packages:\n\n- **[packages/sdk](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/sdk)** - TypeScript Mycelium SDK\n- **[packages/frontend](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/frontend)** - Mycelium app - Next.js demo application showcasing SDK capabilities\n- **[packages/blockchain](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/blockchain)** - Local blockchain service with faucet functionality and an ability to access fork RPC and Bundler (Alto)\n\n## Prerequisites\n\n- **pnpm** \u003e= 10.9.0\n- **node** \u003e= 22.11.0\n- **TypeScript** \u003e= 5.0.0\n- **Anvil** \u003e= 1.2.3 (for blockchain package)\n\n## Installation\n\nInstall all dependencies across the monorepo:\n\n```bash\npnpm install\n```\n\n## Development with Turbo\n\nThis project uses [Turbo](https://turbo.build/) for efficient monorepo management and build orchestration\n\n### Available commands\n\n**Build all packages:**\n\n```bash\npnpm run build\n```\n\n**Run development servers:**\n\n```bash\npnpm run dev\n```\n\n**Run tests across all packages:**\n\n```bash\npnpm run test\n```\n\n**Clean build artifacts:**\n\n```bash\npnpm run clean\n```\n\n### Packages\n\nFor each separate installation guide, please check each package separately:\n\n- [packages/sdk](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/sdk/README.md)\n- [packages/frontend](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/frontend/README.md)\n- [packages/blockchain](https://github.com/0xdeval/mycelium-sdk/blob/main/packages/blockchain/README.md)\n\n## Development tools\n\n### Code quality\n\n**ESLint:**\n\n- TypeScript-specific rules\n- React/Next.js best practices\n- Consistent import patterns\n- Strict type checking\n\n**Run linting:**\n\n```bash\npnpm run lint\n```\n\n**Prettier formatting:**\n\n```bash\npnpm run format        # Check formatting\npnpm run format:fix    # Fix formatting issues\n```\n\n**Spell checking:**\n\n```bash\npnpm run spell\n```\n\n### Testing\n\n**Run all tests:**\n\n```bash\npnpm run test\n```\n\n**SDK-specific testing:**\n\n```bash\ncd packages/sdk\npnpm run test:watch    # Watch mode\n```\n\n## Documentation\n\nGenerate comprehensive documentation:\n\n```bash\ncd packages/sdk\npnpm run docs:public   # Public API documentation\npnpm run docs:dev      # Development documentation\n```\n\n## Environment variables\n\n### Frontend\n\n```bash\n# Required\nNEXT_PUBLIC_PRIVY_APP_ID=your-privy-app-id\nNEXT_PUBLIC_PRIVY_APP_SECRET=your-privy-app-secret\n\n# Optional\nNEXT_PUBLIC_CHAIN_ID=8453\nNEXT_PUBLIC_RPC_URL=your-rpc-url\nNEXT_PUBLIC_BUNDLER_URL=your-bundler-url\n```\n\n### Blockchain service\n\n```bash\n# Required\nFORK_RPC_URL=\"\u003cyour-fork-rpc-url\u003e\"\nBUNDLER_URL=\"\u003cyour-bundler-url\u003e\"\n\n# Optional\nMAINNET_RPC=https://eth.llamarpc.com\nEXPRESS_PORT=3001\nNODE_CMD=bun\nEXPRESS_ENTRY=src/service.ts\n```\n\n## Contributing\n\nCheck the [CONTRIBUTION.md](https://github.com/0xdeval/mycelium-sdk/blob/main/CONTRIBUTION.md)\n\n## License\n\nThis project is licensed under the dual license - Apache 2.0 + Commercial - see the [LICENSE](https://github.com/0xdeval/mycelium-sdk/blob/main/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdeval%2Fmycelium-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xdeval%2Fmycelium-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdeval%2Fmycelium-sdk/lists"}