You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: overhaul README with accurate version, fixed code samples, Ethereum example
- Update version from 1.2.7 → 1.3.0 in all integration examples
- Fix Maven integration (remove bintray, correct groupId)
- Fix TRON sample: use ChainType.TRON instead of ChainType.BITCOIN for TRX wallet lookup
- Add Ethereum transaction signing example
- Add Requirements section (Java 8+, Gradle 8.5+)
- Add Running Tests and Building sections
- Update CI badge from Travis to GitHub Actions
- Replace hardcoded '123456' passwords with 'your_password' placeholders
- Use implementation instead of compile in Gradle example
Co-authored-by: Galaxy <GalaxySciTech@users.noreply.github.com>
View a sample test at [Tokencore Test Sample](https://github.com/galaxyscitech/tokencore/blob/master/src/test/java/org/consenlabs/tokencore/Test.java).
Offline signing refers to the process of creating a digital signature for a transaction without connecting to the internet. This method enhances security by ensuring private keys never come in contact with an online environment. Here's how you can create an offline signature with Tokencore for Bitcoin and TRON:
108
+
Offline signing refers to the process of creating a digital signature for a transaction without connecting to the internet. This method enhances security by ensuring private keys never come in contact with an online environment.
106
109
107
110
### Bitcoin
108
111
109
112
1.**Set Up Transaction Details**
110
113
111
-
Define the details of your Bitcoin transaction, including recipient's address, change index, amount to be transferred, and the fee.
> **Note**: Tokencore is a functional component for digital currency. It's primarily for learning purposes and doesn't offer a complete blockchain business suite.
0 commit comments