agora
agora copied to clipboard
POC Node implementation for CoinNet
This is still far ahead in the future, but recording it here for reference: Once we get a working CoinNet, we will focus on the Trust Contract. In order to...
Once we have a working product, based on Trust Contracts which are WebAssembly programs with a fully-fledged runtime (#259), we need to explore how people can easily write contracts that...
This is mostly a documentation task. We need to write some example of "basic" Trust Contracts. - Come up with a list of common use case (e.g. fungible token, non-fungible...
As a Developer, I need the Dlang project tester to test Agora in order to catch regression before they’re introduced.
As a node operator, I need a software that keeps an automatically updated agora node on my server in order to have seamless integration with the chain. **Definition of Done:**...
This will also make sure we can write independent tools (like the CLI transaction-sending tool) without having to copy/paste the definitions of Transaction / Input / Output / Hash, etc....
This also needs to make sure it's memory-efficient. A simple (but naive) approach is to use a new Set for each time we return a utxoFinder delegate. But this would...
We want to allow multiple holders, owning less than the threshold (currently 40,000 BOA) to run a validator in a trustless / non-custodian manner. From the point of view of...
Otherwise any library we include will decrease our coverage if we don't use some code / some code is not tested.
In the current implementation the Set structure is a source of randomness. This is because internally we use a hashmap, and walking over this hashmap is semi-random. IMO, we need...