Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

On-chain accounts protobuf & domain objects #287

Merged
merged 26 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b6c529f
feat: add `account_details` table to the DB
polydez Mar 8, 2024
ed04d5a
refactor: rename `block_number` column in nullifiers table to `block_…
polydez Mar 8, 2024
4cc4ba8
refactor: use `BETWEEN` in interval comparison checks
polydez Mar 8, 2024
8f0935a
feat: implement account details protobuf messages, domain objects and…
polydez Mar 10, 2024
9f5c832
feat: (WIP) implement account details support
polydez Mar 10, 2024
58dc518
feat: (WIP) implement account details support
polydez Mar 12, 2024
ef7a1f7
feat: (WIP) implement account details support
polydez Mar 12, 2024
bb31753
feat: (WIP) implement account details support
polydez Mar 25, 2024
ac81502
fix: db creation
polydez Mar 25, 2024
ab9c457
docs: remove TODO
polydez Mar 26, 2024
31cfd19
refactor: apply formatting
polydez Mar 26, 2024
6560444
feat: implement endpoint for getting public account details
polydez Mar 27, 2024
bd7ac74
Merge branch 'next' into polydez-onchain-accounts
polydez Mar 28, 2024
be2be66
tests: add test for storage
polydez Mar 29, 2024
fbcfd6b
feat: add rpc endpoint for getting account details
polydez Mar 29, 2024
28d44fb
refactor: keep only domain object changes
polydez Mar 29, 2024
d344c57
Merge branch 'next' into polydez-onchain-accounts
polydez Mar 29, 2024
618e24e
fix: compilation errors
polydez Mar 30, 2024
bd47398
fix: use note tag conversion from `u64`
polydez Apr 1, 2024
42b0c22
refactor: remove account details protobuf messages
polydez Apr 3, 2024
bb6e18e
fix: remove unused error invariants
polydez Apr 3, 2024
535797e
refactor: introduce `UpdatedAccount` struct
polydez Apr 5, 2024
3266818
fix: rollback details conversion
polydez Apr 5, 2024
fcdc331
fix: compilation error
polydez Apr 5, 2024
6eafe6e
Merge branch 'next' into polydez-onchain-accounts
polydez Apr 5, 2024
20f0756
format: reformat using rustfmt
polydez Apr 5, 2024
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
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ target/
# VS Code
.vscode/

# JetBrains IDEs
.idea/
.fleet/

# Genesis files
/accounts
genesis.dat
Expand All @@ -25,3 +29,7 @@ genesis.dat
*.sqlite3-shm
*.sqlite3-wal
db/

# Configs
/genesis.toml
/miden.toml
Loading
Loading