Add ability to expose bytes as a hex string without a prefix
2 files changed
tree: 1f77a6c2b2b402c1285f7e39be53a550ae5ad408
  1. .idea/
  2. bytes/
  3. concurrent/
  4. concurrent-coroutines/
  5. config/
  6. crypto/
  7. devp2p/
  8. dist/
  9. dns-discovery/
  10. eth/
  11. eth-reference-tests/
  12. eth-repository/
  13. gossip/
  14. gradle/
  15. hobbits/
  16. hobbits-relayer/
  17. io/
  18. junit/
  19. kademlia/
  20. kv/
  21. les/
  22. merkle-trie/
  23. net/
  24. net-coroutines/
  25. plumtree/
  26. progpow/
  27. rlp/
  28. rlpx/
  29. scuttlebutt/
  30. scuttlebutt-client-lib/
  31. scuttlebutt-discovery/
  32. scuttlebutt-handshake/
  33. scuttlebutt-rpc/
  34. ssz/
  35. toml/
  36. units/
  37. .editorconfig
  38. .gitattributes
  39. .gitignore
  40. .gitmodules
  41. build.gradle
  42. CONTRIBUTING.md
  43. dependency-versions.gradle
  44. DISCLAIMER
  45. gradle.properties
  46. KEYS
  47. LICENSE
  48. NOTICE
  49. PACKAGES.md
  50. README.md
  51. RELEASE.md
  52. settings.gradle
  53. wrapper.gradle
README.md

Tuweni: Apache Core Libraries for Java (& Kotlin)

Build Status License Maven Central Sonatype Nexus (Snapshots)

See our web site for details on the project.

Tuweni is a set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages.

It includes a low-level bytes library, serialization and deserialization codecs (e.g. RLP), various cryptography functions and primatives, and lots of other helpful utilities.

Tuweni is developed for JDK 1.8 or higher.

Build Instructions

You need to have Gradle and Java installed.

Tuweni requires Gradle 5.0 or higher.

Java 8 should be used for building in order to support both Java 8 and Java 11 at runtime.

Clone along with submodules

git clone https://github.com/apache/incubator-tuweni.git tuweni
cd tuweni
git submodule update --init --recursive

First bootstrap and download the wrapper

gradle setup

This downloads gradle and installs helper scripts for the project under ./gradlew and ./gradlew.bat.

Build the project

./gradlew build

After a successful build, libraries will be available in build/libs.

Contributing

Your contributions are very welcome! Here are a few links to help you:

Mailing lists

More information

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.