https://github.com/guppster/ark-nim
A Nim library simplifying connection to the ARK blockchain
https://github.com/guppster/ark-nim
blockchain cryptography nim
Last synced: 3 months ago
JSON representation
A Nim library simplifying connection to the ARK blockchain
- Host: GitHub
- URL: https://github.com/guppster/ark-nim
- Owner: Guppster
- License: mit
- Created: 2017-10-13T05:13:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-15T02:04:15.000Z (over 7 years ago)
- Last Synced: 2025-01-12T06:24:15.349Z (4 months ago)
- Topics: blockchain, cryptography, nim
- Language: Nim
- Homepage:
- Size: 419 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ark-Nim
A nim library simplifying connection to the ARK blockchain## Usage
### Creating a staticly linked library
Using this method you can generate a library that can be used in any C project```
nim c --app:staticLib --noMain --header ark.nim
gcc -o m -Inimcache -Ipath/to/nim/lib libark.nim.a [name-of-C-file].c
```