├── .gitignore ├── README.md ├── TollGate_Logo-C-black.png ├── UNLICENSE ├── _config.yml ├── early-development-and-mistakes-to-be-avoided.md ├── hosting_this_nsite.md ├── logo ├── TollGate_Logo-Black.png ├── TollGate_Logo-C-black.png ├── TollGate_Logo-C-white.png ├── TollGate_Logo-Grey.png ├── TollGate_Logo-White.png ├── TollGate_icon-Black.png ├── TollGate_icon-White.png └── TollGate_icon-trannsparent.png ├── maintainers.yaml ├── markdown_faqs ├── 10.02.2025_paper_thoughts │ ├── lightning_network.png │ ├── state_of_the_art_payment_stack.drawio │ ├── state_of_the_art_payment_stack.jpg │ ├── terminology.md │ └── thoughts_on_paper_10.02.2025.md ├── 12.01.2025_for_non_technical_bitcoiners.md └── 12.01.2025_for_technical_bitcoiners.md ├── nostr-powering-tollgate.md ├── nsite ├── Pipfile ├── building_custom_feeds_openwrt.html ├── development_status.html ├── images │ ├── generate-diagram.js │ ├── generate-diagram.py │ ├── new_client_check.png │ └── new_client_check.txt ├── index.html ├── obscure_thoughts.html ├── outlook.html ├── payments_in_radius_server.html ├── project_timeline.html ├── using_gsm_stack.html ├── using_nodogsplash.html ├── using_opennds.html ├── using_radius_server.html ├── using_raspberry_pi.html └── using_toll_booth.html ├── package.json ├── protocol ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 05.md ├── 06.md ├── 10.md └── README.md ├── sequence_diagram_mermaid_syntax.md ├── test_ngit_tmp ├── tollgate-sequence-diagram.png ├── tollgate_modules.drawio └── tollgate_modules.jpeg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/README.md -------------------------------------------------------------------------------- /TollGate_Logo-C-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/TollGate_Logo-C-black.png -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/UNLICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/_config.yml -------------------------------------------------------------------------------- /early-development-and-mistakes-to-be-avoided.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/early-development-and-mistakes-to-be-avoided.md -------------------------------------------------------------------------------- /hosting_this_nsite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/hosting_this_nsite.md -------------------------------------------------------------------------------- /logo/TollGate_Logo-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_Logo-Black.png -------------------------------------------------------------------------------- /logo/TollGate_Logo-C-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_Logo-C-black.png -------------------------------------------------------------------------------- /logo/TollGate_Logo-C-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_Logo-C-white.png -------------------------------------------------------------------------------- /logo/TollGate_Logo-Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_Logo-Grey.png -------------------------------------------------------------------------------- /logo/TollGate_Logo-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_Logo-White.png -------------------------------------------------------------------------------- /logo/TollGate_icon-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_icon-Black.png -------------------------------------------------------------------------------- /logo/TollGate_icon-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_icon-White.png -------------------------------------------------------------------------------- /logo/TollGate_icon-trannsparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/logo/TollGate_icon-trannsparent.png -------------------------------------------------------------------------------- /maintainers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/maintainers.yaml -------------------------------------------------------------------------------- /markdown_faqs/10.02.2025_paper_thoughts/lightning_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/10.02.2025_paper_thoughts/lightning_network.png -------------------------------------------------------------------------------- /markdown_faqs/10.02.2025_paper_thoughts/state_of_the_art_payment_stack.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/10.02.2025_paper_thoughts/state_of_the_art_payment_stack.drawio -------------------------------------------------------------------------------- /markdown_faqs/10.02.2025_paper_thoughts/state_of_the_art_payment_stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/10.02.2025_paper_thoughts/state_of_the_art_payment_stack.jpg -------------------------------------------------------------------------------- /markdown_faqs/10.02.2025_paper_thoughts/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/10.02.2025_paper_thoughts/terminology.md -------------------------------------------------------------------------------- /markdown_faqs/10.02.2025_paper_thoughts/thoughts_on_paper_10.02.2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/10.02.2025_paper_thoughts/thoughts_on_paper_10.02.2025.md -------------------------------------------------------------------------------- /markdown_faqs/12.01.2025_for_non_technical_bitcoiners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/12.01.2025_for_non_technical_bitcoiners.md -------------------------------------------------------------------------------- /markdown_faqs/12.01.2025_for_technical_bitcoiners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/markdown_faqs/12.01.2025_for_technical_bitcoiners.md -------------------------------------------------------------------------------- /nostr-powering-tollgate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nostr-powering-tollgate.md -------------------------------------------------------------------------------- /nsite/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/Pipfile -------------------------------------------------------------------------------- /nsite/building_custom_feeds_openwrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/building_custom_feeds_openwrt.html -------------------------------------------------------------------------------- /nsite/development_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/development_status.html -------------------------------------------------------------------------------- /nsite/images/generate-diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/images/generate-diagram.js -------------------------------------------------------------------------------- /nsite/images/generate-diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/images/generate-diagram.py -------------------------------------------------------------------------------- /nsite/images/new_client_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/images/new_client_check.png -------------------------------------------------------------------------------- /nsite/images/new_client_check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/images/new_client_check.txt -------------------------------------------------------------------------------- /nsite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/index.html -------------------------------------------------------------------------------- /nsite/obscure_thoughts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/obscure_thoughts.html -------------------------------------------------------------------------------- /nsite/outlook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/outlook.html -------------------------------------------------------------------------------- /nsite/payments_in_radius_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/payments_in_radius_server.html -------------------------------------------------------------------------------- /nsite/project_timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/project_timeline.html -------------------------------------------------------------------------------- /nsite/using_gsm_stack.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsite/using_nodogsplash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/using_nodogsplash.html -------------------------------------------------------------------------------- /nsite/using_opennds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/using_opennds.html -------------------------------------------------------------------------------- /nsite/using_radius_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/using_radius_server.html -------------------------------------------------------------------------------- /nsite/using_raspberry_pi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/using_raspberry_pi.html -------------------------------------------------------------------------------- /nsite/using_toll_booth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/nsite/using_toll_booth.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/package.json -------------------------------------------------------------------------------- /protocol/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/01.md -------------------------------------------------------------------------------- /protocol/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/02.md -------------------------------------------------------------------------------- /protocol/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/03.md -------------------------------------------------------------------------------- /protocol/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/04.md -------------------------------------------------------------------------------- /protocol/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/05.md -------------------------------------------------------------------------------- /protocol/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/06.md -------------------------------------------------------------------------------- /protocol/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/10.md -------------------------------------------------------------------------------- /protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/protocol/README.md -------------------------------------------------------------------------------- /sequence_diagram_mermaid_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/sequence_diagram_mermaid_syntax.md -------------------------------------------------------------------------------- /test_ngit_tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tollgate-sequence-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/tollgate-sequence-diagram.png -------------------------------------------------------------------------------- /tollgate_modules.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/tollgate_modules.drawio -------------------------------------------------------------------------------- /tollgate_modules.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTollGate/tollgate/HEAD/tollgate_modules.jpeg --------------------------------------------------------------------------------