{"id":30850095,"url":"https://github.com/dialectlabs/blink-starter-evm","last_synced_at":"2026-05-18T09:32:34.245Z","repository":{"id":310676251,"uuid":"1038619691","full_name":"dialectlabs/blink-starter-evm","owner":"dialectlabs","description":"A scaffold repository for quickly building Blinks on EVM blockchains. Contains a starter template to help developers get started with Blink development.","archived":false,"fork":false,"pushed_at":"2025-08-25T15:08:40.000Z","size":6249,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-07T05:05:21.354Z","etag":null,"topics":["blink","blockchain","dialect","ethereum","evm","evm-blockchain","monad","scaffold","sei","sepolia"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/dialectlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-15T14:33:12.000Z","updated_at":"2025-08-19T14:31:03.000Z","dependencies_parsed_at":"2025-08-19T16:30:40.919Z","dependency_job_id":"3956cafc-59d7-43c6-98d0-e152635d438b","html_url":"https://github.com/dialectlabs/blink-starter-evm","commit_stats":null,"previous_names":["dialectlabs/blink-starter-evm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dialectlabs/blink-starter-evm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dialectlabs%2Fblink-starter-evm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dialectlabs%2Fblink-starter-evm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dialectlabs%2Fblink-starter-evm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dialectlabs%2Fblink-starter-evm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dialectlabs","download_url":"https://codeload.github.com/dialectlabs/blink-starter-evm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dialectlabs%2Fblink-starter-evm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["blink","blockchain","dialect","ethereum","evm","evm-blockchain","monad","scaffold","sei","sepolia"],"created_at":"2025-09-07T05:05:19.980Z","updated_at":"2026-05-18T09:32:34.223Z","avatar_url":"https://github.com/dialectlabs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EVM Blink Starter Template\n\nA template repository for creating [Blinks](https://docs.dialect.to/blinks/) on EVM-compatible blockchains. This template supports multiple chains and wallet providers through a two-dimensional template system.\n\n\u003e ⚠️ **This repository is a template - do not clone or run directly!**  \n\u003e Use `npx create-blinks-app` to generate a project from this template.\n\n## Quick Start\n\nTo create a new Blink project:\n\n```bash\nnpx create-blinks-app\n```\n\nFollow the prompts to select:\n- **Wallet Provider**: Wagmi + ConnectKit or Dynamic Labs\n- **Blockchain**: Monad Testnet, Sei Testnet, or Ethereum Sepolia\n\n## Architecture\n\nThis template uses a **two-dimensional system** that separates wallet-specific code from chain-specific configuration:\n\n```\ntemplates/\n├── wallets/\n│   ├── wagmi/          # Wagmi + ConnectKit integration\n│   │   ├── page.tsx\n│   │   ├── provider.tsx\n│   │   ├── navbar.tsx\n│   │   ├── layout.tsx\n│   │   └── env-additions\n│   └── dynamic/        # Dynamic Labs integration\n│       ├── page.tsx\n│       ├── provider.tsx\n│       ├── navbar.tsx\n│       ├── layout.tsx\n│       └── env-additions\n└── chains/\n    ├── monad/          # Monad Testnet\n    │   ├── config.ts\n    │   ├── env-additions\n    │   ├── logo.png\n    │   └── blink-image.png\n    ├── sei/            # Sei Testnet\n    └── sepolia/        # Ethereum Sepolia\n```\n\n### Template System Benefits\n\n- **Modular**: Wallet and chain concerns are completely separated\n- **Extensible**: Add new chains or wallets without touching existing code\n- **Environment-driven**: Chain-specific branding and configuration via environment variables\n- **Type-safe**: Each chain uses official viem/wagmi chain definitions\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on how to add support for new chains and wallet providers.\n\n## Supported Chains\n\n- **Monad Testnet** (Chain ID: 10143)\n- **Sei Testnet** (Chain ID: 1328)\n- **Ethereum Sepolia** (Chain ID: 11155111)\n\n## Supported Wallet Providers\n\n- **Wagmi + ConnectKit** - Popular React hooks for Ethereum\n- **Dynamic Labs** - Multi-chain wallet provider\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdialectlabs%2Fblink-starter-evm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdialectlabs%2Fblink-starter-evm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdialectlabs%2Fblink-starter-evm/lists"}