{"id":22800029,"url":"https://github.com/wolftech-innovations/wolfether","last_synced_at":"2026-05-16T18:02:03.291Z","repository":{"id":267629405,"uuid":"900768606","full_name":"WolfTech-Innovations/WolfEther","owner":"WolfTech-Innovations","description":"A Blockchain based on Ethereum blockchain technology","archived":false,"fork":false,"pushed_at":"2025-06-12T05:11:10.000Z","size":15652,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-12T06:26:12.752Z","etag":null,"topics":["ethereum","ethereum-blockchain"],"latest_commit_sha":null,"homepage":"","language":"Go","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/WolfTech-Innovations.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}},"created_at":"2024-12-09T12:45:16.000Z","updated_at":"2025-06-12T05:11:13.000Z","dependencies_parsed_at":"2025-02-05T21:48:09.162Z","dependency_job_id":"a17439ae-b646-4371-96aa-22a056eeae3b","html_url":"https://github.com/WolfTech-Innovations/WolfEther","commit_stats":null,"previous_names":["wolftech-innovations/wolfether"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/WolfTech-Innovations/WolfEther","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WolfTech-Innovations%2FWolfEther","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WolfTech-Innovations%2FWolfEther/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WolfTech-Innovations%2FWolfEther/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WolfTech-Innovations%2FWolfEther/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WolfTech-Innovations","download_url":"https://codeload.github.com/WolfTech-Innovations/WolfEther/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WolfTech-Innovations%2FWolfEther/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278547821,"owners_count":26004775,"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-06T02:00:05.630Z","response_time":65,"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":["ethereum","ethereum-blockchain"],"created_at":"2024-12-12T07:10:52.256Z","updated_at":"2025-10-06T02:10:13.969Z","avatar_url":"https://github.com/WolfTech-Innovations.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Docker Pulls](https://img.shields.io/docker/pulls/wolftechinnovations/wolfether-node)\n![GitHub Repo stars](https://img.shields.io/github/stars/WolfTech-Innovations/wolfether?style=social)\n![GitHub last commit](https://img.shields.io/github/last-commit/WolfTech-Innovations/wolfether)\n# WolfEther - Anonymous P2P Blockchain Network\n\n**WolfEther** is a privacy-focused, fee-less hybrid blockchain that combines Proof-of-Work and Proof-of-Stake consensus with integrated Lightning Network channels - all running over Tor for maximum anonymity.\n\n## Key Features\n\n### Privacy \u0026 Security First\n- **Full Tor Integration** - All P2P communication routed through Tor hidden services\n- **Encrypted Wallets** - AES-256-GCM encryption for private keys\n- **Anonymous Transactions** - No transaction fees, no KYC, complete privacy\n- **DDoS Protection** - Built-in rate limiting and bot detection\n\n### Lightning Fast\n- **Integrated Lightning Network** - Instant off-chain transactions\n- **Encrypted Channels** - Privacy-preserving payment channels\n- **Multi-Asset Support** - Lightning channels for custom tokens\n- **15-second Block Times** - Near-instant on-chain confirmations\n\n### Token Economy\n- **Custom Token Creation** - Deploy your own coins for 10,000 units\n- **ERC-20 Compatible** - Standard token interface\n- **Mintable Tokens** - Optional token minting capabilities\n- **Cross-Chain Bridge** - BTC to ETH conversion support\n\n### Dual Network Architecture\n- **MainNet** (Port 8545) - Production network for real value\n- **TestNet** (Port 8546) - Development network for testing\n- **Isolated P2P** - Separate discovery for each network\n- **Single Binary** - Both networks from one executable\n\n## Quick Start\n\n### Prerequisites\n```bash\n# Install Tor\nsudo apt-get install tor\n# Start Tor service\nsudo systemctl start tor\n```\n\n### Installation\n```bash\ngit clone https://github.com/Wolftech-Innovations/WolfEther\ncd WolfEther\ngo mod tidy\ngo build -o wolfether main.go\n```\n\n### Run Node\n```bash\n# Starts both MainNet (8545) and TestNet (8546)\n./wolfether\n```\n\n## API Reference\n\n### Wallet Operations\n```bash\n# Create new wallet\ncurl http://localhost:8545/wallet\n\n# Restore wallet from mnemonic\ncurl -X POST http://localhost:8545/restore \\\n  -d '{\"mnemonic\":\"your twelve word mnemonic phrase here\"}'\n\n# Check balance\ncurl \"http://localhost:8545/balance?address=0x...\"\n\n# Check token balance\ncurl \"http://localhost:8545/balance?address=0x...\u0026token=0x...\"\n```\n\n### Token Creation\n```bash\n# Deploy custom token (costs 10,000 units)\ncurl -X POST http://localhost:8545/token/create \\\n  -d '{\n    \"name\": \"MyToken\",\n    \"symbol\": \"MTK\", \n    \"maxSupply\": \"1000000\",\n    \"mintable\": true,\n    \"privKey\": \"your_private_key\"\n  }'\n\n# List all tokens\ncurl http://localhost:8545/tokens\n```\n\n### Lightning Network\n```bash\n# Open payment channel\ncurl -X POST http://localhost:8545/channel/open \\\n  -d '{\n    \"peer1\": \"0x...\",\n    \"peer2\": \"0x...\",\n    \"amount1\": \"1000\",\n    \"amount2\": \"1000\"\n  }'\n\n# Send Lightning payment\ncurl -X POST http://localhost:8545/channel/transfer \\\n  -d '{\n    \"channel_id\": \"channel_id_here\",\n    \"from\": \"0x...\",\n    \"amount\": \"100\"\n  }'\n```\n\n### Staking\n```bash\n# Stake tokens to become validator\ncurl -X POST http://localhost:8545/stake \\\n  -d '{\n    \"address\": \"0x...\",\n    \"amount\": \"1000\"\n  }'\n```\n\n## Architecture\n\n### Consensus Mechanism\n- **Hybrid PoW/PoS** - Alternating block production\n- **Even Blocks**: Proof-of-Work mining\n- **Odd Blocks**: Proof-of-Stake validation\n- **Reputation System** - Validators scored by performance\n\n### Privacy Features\n- **Tor Hidden Services** - All nodes accessible via .onion addresses\n- **Anonymous Discovery** - P2P node discovery through Tor\n- **Encrypted Communications** - All network traffic encrypted\n- **No Transaction Fees** - Completely fee-less network\n\n### Security Model\n- **Cryptographic Signatures** - All blocks and transactions signed\n- **Nonce Verification** - Prevents replay attacks\n- **Balance Validation** - Prevents double-spending\n- **Reputation Scoring** - Malicious node detection\n\n## Configuration\n\n### Network Constants\n```go\nMainNetID = 468        // Main network identifier\nTestNetID = 469        // Test network identifier\nBlockReward = 50       // Block mining reward\nPoWDiff = 4           // Proof-of-Work difficulty\nPoSStake = 1000       // Minimum stake for validation\nBlockTime = 15        // Block time in seconds\nCoinCreateCost = 10000 // Cost to create custom token\n```\n\n### Tor Configuration\n```bash\n# Default Tor SOCKS5 proxy\nTorPort = 9050\n\n# Automatic .onion address generation\n# Format: [32-char-hash].onion\n```\n\n## Development\n\n### Build from Source\n```bash\ngo mod init wolfether\ngo get github.com/btcsuite/btcd/btcec/v2\ngo get github.com/btcsuite/btcd/btcutil/hdkeychain\ngo get github.com/btcsuite/btcd/chaincfg\ngo get github.com/ethereum/go-ethereum/common\ngo get github.com/ethereum/go-ethereum/crypto\ngo get github.com/tyler-smith/go-bip39\ngo get golang.org/x/net/proxy\ngo build -ldflags=\"-s -w\" -o wolfether main.go\n```\n\n### Testing\n```bash\n# Test on TestNet (port 8546)\ncurl http://localhost:8546/info\n\n# Create test wallet\ncurl http://localhost:8546/wallet\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit changes (`git commit -m 'Add amazing feature'`)\n4. Push to branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n6. **Open a Node** - Help strengthen the network by running a WolfEther node\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Disclaimer\n\nThis software is experimental and provided \"as is\". Use at your own risk. Not audited for production use. The developers are not responsible for any loss of funds or security breaches.\n\n---\n\n*Built with ❤️ for privacy, freedom, and decentralization*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolftech-innovations%2Fwolfether","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolftech-innovations%2Fwolfether","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolftech-innovations%2Fwolfether/lists"}