{"id":19485728,"url":"https://github.com/devforth/fiatless","last_synced_at":"2026-02-28T20:03:45.840Z","repository":{"id":283056340,"uuid":"950512614","full_name":"devforth/fiatless","owner":"devforth","description":"OpenSource crypto payment gateway","archived":false,"fork":false,"pushed_at":"2025-10-20T11:13:07.000Z","size":2033,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-20T13:14:58.487Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/devforth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2025-03-18T09:26:38.000Z","updated_at":"2025-10-20T11:13:10.000Z","dependencies_parsed_at":"2025-03-19T00:45:10.649Z","dependency_job_id":null,"html_url":"https://github.com/devforth/fiatless","commit_stats":null,"previous_names":["devforth/fiatless"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devforth/fiatless","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devforth%2Ffiatless","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devforth%2Ffiatless/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devforth%2Ffiatless/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devforth%2Ffiatless/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devforth","download_url":"https://codeload.github.com/devforth/fiatless/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devforth%2Ffiatless/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29951091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T18:42:55.706Z","status":"ssl_error","status_checked_at":"2026-02-28T18:42:48.811Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-11-10T20:29:52.182Z","updated_at":"2026-02-28T20:03:45.816Z","avatar_url":"https://github.com/devforth.png","language":"Go","readme":"# fiatless\nOpenSource crypto payment gateway\n\n\n# Setting up\n\nYou are responsible for generating and storing securely seed phrases for your wallet. For example, you can generate BIP-0039 seed phrase using next command:\n\n```\ndocker run --rm python:3-alpine sh -c \"pip install mnemonic \u0026\u0026 python -c 'from mnemonic import Mnemonic; print(Mnemonic(\\\"english\\\").generate())'\"\n```\n\nThen you need to set seed phrase in environment variable:\n\n\n```\ndocker run -d --name fiatless \\\n  -p 8000:8000 \\\n  --restart always \\\n  -e TRON_WALLET_SEED_PHRASE=\"your-seed-phrase-here\" \\\n  devforth/fiatless:latest\n```\n\nSame in compose:\n\n```\nversion: '3.8'\n\nservices:\n  fiatless:\n    image: devforth/fiatless:latest\n    container_name: fiatless\n    restart: always\n    environment:\n      TRON_WALLET_SEED_PHRASE: \"your-seed-phrase-here\"\n    ports:\n      - \"8000:8000\"\n```\n\n## Supported env variables\n\n\n| Environment Variable                | Blockchain  | Acceptable Values                       | Example                               | Default Value           |\n|-------------------------------------|------------|------------------------------------------|---------------------------------------|-------------------------|\n| `MODE`                              | All        | `mainnet`, `testnet`                     | `mainnet`                            | `testnet`               |\n| `BITCOIN_WALLET_SEED_PHRASE`        | Bitcoin    | (Any BIP-0039 seed phrase)               | `word1 word2 ... word12`             | _(None, must be set)_   |\n| `BINANCE_WALLET_SEED_PHRASE`        | Binance    | (Any BIP-0039 seed phrase)               | `word1 word2 ... word12`             | _(None, must be set)_   |\n| `SOLANA_WALLET_SEED_PHRASE`         | Solana     | (Any BIP-0039 seed phrase)               | `word1 word2 ... word12`             | _(None, must be set)_   |\n| `ETHEREUM_WALLET_SEED_PHRASE`       | Ethereum   | (Any BIP-0039 seed phrase)               | `word1 word2 ... word12`             | _(None, must be set)_   |\n| `TRON_WALLET_SEED_PHRASE`           | Tron       | (Any BIP-0039 seed phrase)               | `word1 word2 ... word12`             | _(None, must be set)_   |\n| `TRON_NODE`                         | Tron       | `TRONGRID`                               | `TRONGRID`                           | `TRONGRID`               |\n| `TRON_TRONGRID_API_KEY`             | Tron       | (Any valid TronGrid API key)             | `your-trongrid-api-key`              | _(None, must be set)_   |\n\n\n### Roadmap\n\nJust an example of env var extending.\n\n#### Custom blockchains\n\n\n| Environment Variable                | Blockchain  | Acceptable Values                       | Example                               | Default Value           |\n|-------------------------------------|------------|------------------------------------------|---------------------------------------|-------------------------|\n| `TRON_NODE`                         | Tron       | `TRONGRID` | `CUSTOM`                    | `TRONGRID`                           | `TRONGRID`               |\n| `TRON_CUSTOM_RPC_URL`               | Tron       | (Any valid RPC URL)                      | `TRONGRID`                           |  _(None, must be set)_              |\n| `TRON_CUSTOM_API_KEY`               | Tron       | (Any valid API key)                      | `123141541`                          |  _(None, must be set)_               |\n| `TRON_CUSTOM_API_KEY_HEADER`        | Tron       | (Any valid header name)                   | `Authorization`                      |  _(None, must be set)_              |\n\n\n### QuickNode\n\n| Environment Variable                | Blockchain  | Acceptable Values                       | Example                               | Default Value           |\n|-------------------------------------|------------|------------------------------------------|---------------------------------------|-------------------------|\n| `TRON_NODE`                         | Tron       | `TRONGRID` | `QUICKNODE`                    | `QUICKNODE`                           | `TRONGRID`               |\n| `TRON_QUICKNODE_API_KEY`            | Tron       | (Any valid QUICKNODE API key)                      | `123141541`                     |  _(None, must be set)_               |\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevforth%2Ffiatless","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevforth%2Ffiatless","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevforth%2Ffiatless/lists"}