{"id":50841043,"url":"https://github.com/tetherto/wdk-examples","last_synced_at":"2026-06-14T06:35:21.501Z","repository":{"id":364109116,"uuid":"1067948316","full_name":"tetherto/wdk-examples","owner":"tetherto","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-11T16:22:39.000Z","size":529,"stargazers_count":0,"open_issues_count":8,"forks_count":10,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-11T18:13:09.823Z","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/tetherto.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-01T16:12:00.000Z","updated_at":"2026-06-11T16:30:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tetherto/wdk-examples","commit_stats":null,"previous_names":["tetherto/wdk-examples"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tetherto/wdk-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fwdk-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fwdk-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fwdk-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fwdk-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tetherto","download_url":"https://codeload.github.com/tetherto/wdk-examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fwdk-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34312072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"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":"2026-06-14T06:35:20.748Z","updated_at":"2026-06-14T06:35:21.481Z","avatar_url":"https://github.com/tetherto.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WDK Examples\n\nRunnable code examples for [WDK (Wallet Development Kit)](https://docs.wdk.tether.io/) SDK modules.\n\nEach folder contains small runnable examples for one WDK package or integration.\n\n## Examples\n\n| Folder | Package | Description |\n|--------|---------|-------------|\n| [wdk](./wdk/) | `@tetherto/wdk` | Core WDK setup, wallet registration, middleware, and transaction flow |\n| [wallet-evm](./wallet-evm/) | `@tetherto/wdk-wallet-evm` | EVM wallets, balances, transactions, token transfers, signing, and fees |\n| [wallet-evm-erc-4337](./wallet-evm-erc-4337/) | `@tetherto/wdk-wallet-evm-erc-4337` | ERC-4337 smart accounts, UserOperations, paymasters, and bundlers |\n| [wallet-solana](./wallet-solana/) | `@tetherto/wdk-wallet-solana` | Solana wallets, balances, transactions, SPL tokens, signing, and fees |\n| [wallet-ton](./wallet-ton/) | `@tetherto/wdk-wallet-ton` | TON wallets, balances, transactions, Jettons, signing, and fees |\n| [wallet-tron](./wallet-tron/) | `@tetherto/wdk-wallet-tron` | TRON wallets, balances, transactions, TRC20 tokens, signing, and fees |\n| [mcp-toolkit](./mcp-toolkit/) | `@tetherto/wdk-mcp-toolkit` | MCP server and LangChain agent examples for WDK tools |\n| [walletconnect-walletkit](./walletconnect-walletkit/) | `@reown/walletkit` + WDK | Self-contained dApp ↔ wallet signing flow |\n\n## Run\n\n**1. Install root dependencies and set up the environment:**\n\n```bash\nnpm install\ncp .env.example .env\n# Fill in the values in .env\n```\n\n**2. Install dependencies for the sub-repo you want to run:**\n\n```bash\ncd wallet-evm\nnpm install\n```\n\n**3. Run an example:**\n\n```bash\nnpm run example:create-wallet\n```\n\nEach sub-repo has its own `package.json` with only the dependencies it needs. See the README in each folder for available examples.\n\nMost transaction examples quote by default. Set `ACTUALLY_SEND=true` in `.env` only when using a funded test wallet.\n\n## Documentation\n\n- [WDK Documentation](https://docs.wdk.tether.io/)\n- [WDK Core API Reference](https://docs.wdk.tether.io/sdk/core-module/api-reference)\n- [EVM API Reference](https://docs.wdk.tether.io/sdk/wallet-modules/wallet-evm/api-reference)\n- [EVM ERC-4337 API Reference](https://docs.wdk.tether.io/sdk/wallet-modules/wallet-evm-erc-4337/api-reference)\n- [Solana API Reference](https://docs.wdk.tether.io/sdk/wallet-modules/wallet-solana/api-reference)\n- [TON API Reference](https://docs.wdk.tether.io/sdk/wallet-modules/wallet-ton/api-reference)\n- [TRON API Reference](https://docs.wdk.tether.io/sdk/wallet-modules/wallet-tron/api-reference)\n- [MCP Toolkit API Reference](https://docs.wdk.tether.io/ai/mcp-toolkit/api-reference)\n\n## License\n\nApache License 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetherto%2Fwdk-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftetherto%2Fwdk-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetherto%2Fwdk-examples/lists"}