Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

AztecProtocol/aztec-packages

TomAFrench closed a pull request on AztecProtocol/aztec-packages
chore: remove unnecessary `is_integral_bit_size` function
`matches!( bit_size, IntegerBitSize::U1 | IntegerBitSize::U8 | IntegerBitSize::U16 | IntegerBitSize::U32 | IntegerBitSize::U64 ...
iakovenkos pushed 19 commits to si/shplemini-shifts-removal AztecProtocol/aztec-packages
  • fix(ci): report 4 epochs true (#9346) 1ce0fa5
  • feat!: TXE single execution env (#9183) ## TXE single execution env Previously, TXE had a weird dual model in whi... 1d1d76d
  • chore: remove noir_js_backend_barretenberg (#9338) This PR pushes the remaining logic from `noir_js_backend_barreten... cefe3d9
  • feat(avm): full poseidon2 (#9141) Poseidon2 implementation for internal use by the avm in bytecode hashing / addres... eae7587
  • chore: disable bench-process-history (#9360) 8e6734e
  • fix: remove reliance on invalid decompositions in selector calculation (#9337) Decomposing `hash` into `SELECTOR_SIZ... c8e4260
  • feat: Sync from noir (#9332) Automated pull of development from the [noir](https://github.com/noir-lang/noir) progr... a166203
  • chore!: replace usage of vector in keccakf1600 input with array (#9350) We're currently using a vector to represent ... cb58490
  • git subrepo push --branch=master barretenberg subrepo: subdir: "barretenberg" merged: "54bcb59eea" upstream:... ec20ceb
  • chore: replace relative paths to noir-protocol-circuits 32bd7b9
  • git_subrepo.sh: Fix parent in .gitrepo file. [skip ci] 584898c
  • git subrepo push --branch=master noir-projects/aztec-nr subrepo: subdir: "noir-projects/aztec-nr" merged: "a... ddd191e
  • chore: redo typo PR by pucedoteth (#9385) Thanks pucedoteth for https://github.com/AztecProtocol/aztec-packages/pul... fd1a0d1
  • fix: broken constants gen (#9387) Fixes broken constants gen due to new formatting in noir. eb7bc6b
  • chore: print out gas at start and end of each enqueued call (#9377) 29c0b95
  • chore: unstake the bond when the proof lands (#9363) If you claimed it, and the proof lands (from anyone) your bond ... b25b913
  • feat(docs): nits (#8948) Closes https://github.com/AztecProtocol/dev-rel/issues/410 closes: https://github.com/Azte... 008fdd1
  • feat(nr): serde for signed ints (#9211) 66f31c7
  • Merge branch 'master' into si/shplemini-shifts-removal 4f5edc4

View on GitHub

Maddiaa0 pushed 1 commit to md/10-23-chore_fix_and_re-enable_prover_coordination_e2e_test AztecProtocol/aztec-packages

View on GitHub

Maddiaa0 created a review comment on a pull request on AztecProtocol/aztec-packages
This was added for something i reverted, but i think ill keep it anyway

View on GitHub

Maddiaa0 created a review on a pull request on AztecProtocol/aztec-packages

View on GitHub

fcarreiro created a comment on a pull request on AztecProtocol/aztec-packages
> Ah I see, card game uses to_le_bytes for packing and > > ``` > fn compute_lt(x: Field, y: Field, num_bytes: u32) -> bool { > let x_bytes: [u8; 32] = x.to_le_bytes(); > let y_bytes: ...

View on GitHub

Maddiaa0 pushed 1 commit to md/10-23-chore_fix_and_re-enable_prover_coordination_e2e_test AztecProtocol/aztec-packages
  • fix: allow claims during epoch 1f5c729

View on GitHub

iakovenkos opened a pull request on AztecProtocol/aztec-packages
feat: removed redundant scalar muls from the verifiers using shplemini
* Reduced the size of all batch_mul to be performed by the native and recursive verifiers switched to shplemini * Slightly re-shuffled the entities in Translator and ECCVM, so that entitied to be s...
sirasistant created a comment on a pull request on AztecProtocol/aztec-packages
Maybe we can switch the compute_lt and the card game to use be and see what the results are

View on GitHub

spypsy pushed 1 commit to spy/remove-e2e-earthfile AztecProtocol/aztec-packages

View on GitHub

AztecBot pushed 2 commits to release-please--branches--master AztecProtocol/aztec-packages
  • feat(nr): serde for signed ints (#9211) 66f31c7
  • chore(master): Release 0.60.0 e353ce4

View on GitHub

Maddiaa0 deleted a branch AztecProtocol/aztec-packages

md/serde-for-signed-ints

Maddiaa0 pushed 1 commit to master AztecProtocol/aztec-packages
  • feat(nr): serde for signed ints (#9211) 66f31c7

View on GitHub

Maddiaa0 closed a pull request on AztecProtocol/aztec-packages
feat(nr): serde for signed ints
## Overview Adds serde for signed integer types (and the missing u16), from #9179 Just adds litle smoke tests for the stuff I've added at the bottom of the file, I can add for all if deemed r...
sirasistant created a comment on a pull request on AztecProtocol/aztec-packages
Ah I see, card game uses to_le_bytes for packing and ``` fn compute_lt(x: Field, y: Field, num_bytes: u32) -> bool { let x_bytes: [u8; 32] = x.to_le_bytes(); let y_bytes: [u8; 32] = y....

View on GitHub

iakovenkos pushed 1 commit to si/shplemini-shifts-removal AztecProtocol/aztec-packages
  • removed shifted commitments in all shplemini verifiers 630e10c

View on GitHub

sirasistant created a comment on a pull request on AztecProtocol/aztec-packages
> I'm surprised this doesn't give us bytecode gains Reversals are deduplicated via a procedure call so it shouldn't be noticeable. However I think we might be using little endianness more than I t...

View on GitHub

dbanks12 created a comment on a pull request on AztecProtocol/aztec-packages
> I'm surprised this doesn't give us bytecode gains. @sirasistant I thought Brillig was needing some conversions LE -> BE because it was expecting to do ToRadixBE? I thought the same @fcarreiro!...

View on GitHub

LeilaWang created a review comment on a pull request on AztecProtocol/aztec-packages
I checked the codebase again and PublicKeys is never included in a struct that can be empty. So agree with you that it's a footgun! Then maybe remove `is_empty` and the if statement in `hash`, to a...

View on GitHub

LeilaWang created a review on a pull request on AztecProtocol/aztec-packages

View on GitHub

AztecBot pushed 2 commits to release-please--branches--master AztecProtocol/aztec-packages
  • feat(docs): nits (#8948) Closes https://github.com/AztecProtocol/dev-rel/issues/410 closes: https://github.com/Azte... 008fdd1
  • chore(master): Release 0.60.0 6c7ed6b

View on GitHub

catmcgee closed an issue on AztecProtocol/aztec-packages
bug: fix dead "milestones overview" link
The Readme file has this link which opens up to a dead page. I went through the 25 pages of open issues and there's none on it <img width="1198" alt="Screenshot 2024-06-04 at 12 57 26 PM" src="h...
catmcgee closed an issue on AztecProtocol/aztec-packages
bug: fix dead "milestones overview" link
The Readme file has this link which opens up to a dead page. I went through the 25 pages of open issues and there's none on it <img width="1198" alt="Screenshot 2024-06-04 at 12 57 26 PM" src="h...
catmcgee pushed 1 commit to master AztecProtocol/aztec-packages
  • feat(docs): nits (#8948) Closes https://github.com/AztecProtocol/dev-rel/issues/410 closes: https://github.com/Azte... 008fdd1

View on GitHub

catmcgee closed a pull request on AztecProtocol/aztec-packages
feat(docs): nits
Closes https://github.com/AztecProtocol/dev-rel/issues/410 closes: https://github.com/AztecProtocol/aztec-packages/issues/6864 closes: https://github.com/AztecProtocol/dev-rel/issues/417 Pleas...
catmcgee pushed 1 commit to docs/function-transforms AztecProtocol/aztec-packages

View on GitHub

dbanks12 created a review comment on a pull request on AztecProtocol/aztec-packages
I was wondering the same thing!

View on GitHub

dbanks12 created a review comment on a pull request on AztecProtocol/aztec-packages
Okay, I like that. Simplifies things.

View on GitHub

jeanmon pushed 1 commit to jm/9349-avm-shplemini AztecProtocol/aztec-packages
  • 9349: Adapt proof length formula in codegen template file 801e09c

View on GitHub

dbanks12 created a review comment on a pull request on AztecProtocol/aztec-packages
Ah good catch, did not mean to leave this in.

View on GitHub

Load more