convex icon indicating copy to clipboard operation
convex copied to clipboard

Convex Main Repository - Decentralised platform for the Internet of Value

Results 152 convex issues
Sort by recently updated
recently updated
newest added

Need to implement staking functions in the runtime library. Key operations: - Adjust stake (as peer) - Delegate stake (as any user / actor) - Claim staking rewards

enhancement

Currently we just have a simple import macro: ```clojure (import some-address :as alias) ``` Should extend this and consider: - Ability to make multiple imports in one statement? - Ability...

question

Not top priority but Clojure allows to chain several `#_`. For instance, the following fails with the Convex Reader while the Clojure Reader would effectively ignore both forms: ```clojure #_...

enhancement

It seems extra `)` are ignored: ```clojure '(42)))))) ;; => '(42) ```

bug

Given that the CVX runner allow users to read strings, I was trying to decompile some cells. It can be a unique and powerful feature, for instance decompiling a function...

enhancement
question

Essentially, the following happens whenever a macro from another account is called: ![Screenshot from 2021-06-25 14-56-04](https://user-images.githubusercontent.com/17478152/123428267-e90aba00-d5c5-11eb-814c-b1d08d28bf80.png) Some intermediary step is omitted when a macro is called from another account.

bug

After building the Convex JAR by Skipping tests, I got this SLF4J error messages when launching the Peer. ./convex local start2 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to...

question

Quick thing I forgot to mention during last meeting. At some point, I had an issue with `libsodium` on NextJournal. I don't know how nor why I got there but...

enhancement

Currently, there is a risk of sequence number mismatch between: - Peers submitting their own transactions (e.g. adjusting URL) - Clients controlling the Peer Controller Account remotely (having the right...

enhancement

It should be possible to do a concurrent mark+sweep on the storage file to discard old data Rough Procedure: - Set a "marking" flag (which will cause new additions to...

enhancement