Colin Roberts
Colin Roberts
## Idea I would love to see an implementation of some NIST approved lattice based crypto scheme. The go-to example is: - [ ] #188 - [ ] [FrodoKEM](https://frodokem.org/) -...
When it comes to cryptography, all of it can be implemented in `no-std`. To that end, I think that much of our implementation is essentially `no-std` compatible already. There are...
## WIP - [x] Basic LWE - [ ] Ring-LWE - [ ] Improve API (take bytes for `Plaintext`?) - [ ] Improve documentation - [ ] Better testing
We are using some unstable features: ``` #![allow(incomplete_features)] #![feature(effects)] #![feature(const_trait_impl)] #![feature(const_mut_refs)] #![feature(const_for)] #![feature(const_option)] #![feature(generic_const_exprs)] #![feature(specialization)] ``` Are any of these now stabilized? I believe some of the `const` are stabilized...
# Idea We should compare a constant rate `r` bearing token in a pool with a varying strike K. - Use an OU process with a fixed drift and sigma/theta...
This is for G3M, this is for testing DCA.
**Is your feature request related to a problem? Please describe.** For all the parameters in the protocols we should describe the liquidity (L) and the PVF (V) as the parameters...
We need to do the following for DCA analysis. First things first, let's just have the pool go from 1% to 99% so that we don't have to worry about...
The prospectus is an audit in some context. This is a robust document that encompassed out stress test and analysis. We can inspire this with a combination of audit reports...
Working here to fix the fee accounting for GeometricMean TODO: - [x] Add a test with very deep liquidity to see that fee approaches expected like in ConstantSum. --- Closes...