Skip to content
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fdd90ee
Initial plan
Copilot Oct 2, 2025
347195b
Implement Infinite Ledger of Currents system
Copilot Oct 2, 2025
1446775
Add quickstart script and Python API example
Copilot Oct 2, 2025
c6047da
Add comprehensive architecture documentation and test suite
Copilot Oct 2, 2025
d9bcf84
Merge pull request #1 from 4way4eva/copilot/fix-5ab023af-ec88-4df7-81…
4way4eva Oct 2, 2025
df3f840
Initial plan
Copilot Oct 9, 2025
cd1d69f
Create go
4way4eva Oct 9, 2025
f8d76ba
Merge pull request #2 from 4way4eva/copilot/explore-symbolism-infrast…
4way4eva Oct 9, 2025
07caf59
Initial plan
Copilot Oct 9, 2025
5c516f7
Merge pull request #3 from 4way4eva/copilot/add-infrastructure-map-sc…
4way4eva Oct 9, 2025
45086db
Initial plan
Copilot Oct 10, 2025
4c09432
Merge pull request #4 from 4way4eva/copilot/index-and-parse-assets
4way4eva Oct 10, 2025
f2ab3a0
Merge pull request #5 from 4way4eva/main
4way4eva Oct 22, 2025
3f8ecd1
Merge pull request #6 from 4way4eva/main
4way4eva Oct 22, 2025
8c4e240
Create copilot-instructions.md
4way4eva Oct 22, 2025
3349dcf
Merge pull request #1 from 4way4eva/main
4way4eva Oct 22, 2025
8498105
Merge pull request #2 from 4way4eva/copilot/add-infrastructure-map-sc…
4way4eva Oct 22, 2025
e584ca5
Merge pull request #7 from 4way4eva/copilot/fix-5ab023af-ec88-4df7-81…
4way4eva Oct 23, 2025
ed572b8
Merge pull request #4 from 4way4eva/main
4way4eva Oct 23, 2025
c68586e
Merge pull request #8 from 4way4eva/main
4way4eva Oct 24, 2025
6b4d219
Update README.md
4way4eva Oct 31, 2025
13cf8ce
Merge pull request #9 from 4way4eva/4way4eva-patch-1
4way4eva Oct 31, 2025
8f7a54b
Update README.md
4way4eva Oct 31, 2025
86b4cf1
Merge pull request #10 from 4way4eva/4way4eva-patch-1
4way4eva Oct 31, 2025
d535c01
Update README.md
4way4eva Oct 31, 2025
b6569a3
Merge pull request #11 from 4way4eva/4way4eva-patch-1
4way4eva Oct 31, 2025
813d2ca
Merge pull request #12 from 4way4eva/copilot/fix-5ab023af-ec88-4df7-8…
4way4eva Nov 1, 2025
b27f951
Update README.md
4way4eva Nov 1, 2025
5c26266
Merge pull request #13 from 4way4eva/4way4eva-patch-1
4way4eva Nov 1, 2025
7ae80d9
Update README.md
4way4eva Nov 1, 2025
1e6806e
Merge pull request #14 from 4way4eva/4way4eva-patch-1
4way4eva Nov 1, 2025
f9f00d6
Update test_ledger.py
4way4eva Nov 1, 2025
cd06a49
Merge pull request #15 from 4way4eva/4way4eva-patch-1
4way4eva Nov 1, 2025
f003ad4
Merge branch 'EVOLEVERZ:main' into main
4way4eva Nov 1, 2025
c770b13
Merge pull request #5 from 4way4eva/main
4way4eva Nov 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
272 changes: 272 additions & 0 deletions .github/copilot-instructions.md

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Example/demo files
example_ledger.yaml
example_ledger.json
demo_ledger.yaml
demo_ledger.json
python_example_ledger.yaml
python_example_ledger.json
Loading