scala-tron icon indicating copy to clipboard operation
scala-tron copied to clipboard

Scala implementation of the Tron whitepaper

Results 8 scala-tron issues
Sort by recently updated
recently updated
newest added

The scala implementation should be compatible with the [java-tron](https://github.com/tronprotocol/java-tron) project. Data Models are based on [protocol buffers](https://github.com/tronprotocol/java-tron/tree/develop/src/main/proto) ## Compatibilty * [ ] ScaleCube

new feature

Implements #27

enhancement

Make a DSL similar to https://github.com/typelevel/squants Prototype: https://scalafiddle.io/sf/wU5kTG8/3 **Example** ```scala val bitcoins: Bitcoin = Satoshi(500000) val satoshis: Satoshi = Bitcoin(2) Bitcoin(2) == Satoshi(200000000) val sum= Bitcoin(1) + Bitcoin(3) val wallet...

new feature

* [ ] Cluster * [ ] Core * [ ] DbStore * [ ] Grpc * [ ] Peer * [ ] Storage * [ ] Utils * [...

Add benchmark tests using https://scalameter.github.io/

new feature

# Address Creation Add functionality to generate new addresses ## CLI The user wants to create a new address using the CLI ```bash > key --create Key Created! Address: 1BUo6dhbemHJWpSXc5HkywPc3ExEBisAtb...

new feature

Add the required community standards information * [ ] Code of conduct * [x] Contributing (#18, thanks @phadnisvinay30) * [ ] Issue or pull request template Source: https://opensource.guide/

enhancement

Make sure that the license is correct and compatible with the [java-tron](https://github.com/tronprotocol/java-tron) project Update the license headers for the files which are imported from other projects. **Projects** * https://github.com/ethereum/ethereumj/tree/develop/ethereumj-core/src/main/java/org/ethereum *...

enhancement