Kata Choi
Kata Choi
The transaction API currently doesn't return the withdrawal-related transactions. They are internal transactions from the contracts. It needs to find a way to parse them and have them included in...
The scenario would work like this: 1. When a wallet is being created/edited, the user can edit the tag(s) the wallet belongs to. 2. In the wallet dashboard, the wallets...
oods = out-of-domain-sampling see: https://github.com/zksecurity/stark-book/pull/2/files/4e4cc540ee8619e8e96b148b39bfe5e21421c36a#r1434949018
Please refer to https://github.com/zksecurity/stark-book/pull/2#discussion_r1434934654
Please feel free to comment.
This is to implement #142 ### Changes AST: - `Generic` is to represent the generic parameter in the function signature. This involves modifications to the AST parser to support the...
This is an alternative approach to #136, based on the _monomorphization_ concept. It aims to have broader support for const generic.
given: ```rust fn main(pub public_input: Field, private_input: [Field; 3]) { let mut sum = 0; for ii in 0..3 { sum = sum + private_input[ii]; } for ii in 0..3...