Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/5afe/bivrost-kotlin
🔥 🌈 Bridge between Solidity Contracts and Kotlin
https://github.com/5afe/bivrost-kotlin
abi ethereum kotlin-library solidity solidity-contracts
Last synced: about 1 month ago
JSON representation
🔥 🌈 Bridge between Solidity Contracts and Kotlin
- Host: GitHub
- URL: https://github.com/5afe/bivrost-kotlin
- Owner: 5afe
- License: apache-2.0
- Created: 2017-08-21T16:59:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T09:06:55.000Z (over 1 year ago)
- Last Synced: 2023-09-12T21:59:40.739Z (over 1 year ago)
- Topics: abi, ethereum, kotlin-library, solidity, solidity-contracts
- Language: Kotlin
- Homepage:
- Size: 323 KB
- Stars: 30
- Watchers: 6
- Forks: 10
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
### Bivrost for Kotlin
🔥 🌈 Bridge between Solidity Contracts and Kotlin
[![](https://jitpack.io/v/gnosis/bivrost-kotlin.svg)](https://jitpack.io/#gnosis/bivrost-kotlin)
[![Build Status](https://travis-ci.org/gnosis/bivrost-kotlin.svg?branch=master)](https://travis-ci.org/gnosis/bivrost-kotlin)#### Include via jitpack
* Add jitpack repository (see https://www.jitpack.io/#gnosis/bivrost-kotlin)
* Add classpath dependency:
```
classpath ('com.github.gnosis.bivrost-kotlin:bivrost-gradle-plugin:')
```* Add runtime dependency:
```
implementation ('com.github.gnosis.abi-kotlin:bivrost-solidity-types:')
```* Apply plugin:
```
apply plugin: 'bivrost'
```* Add abi json to project in `app/abi` folder (see sample app)
#### Setup of Sample App
* Optional: Generate the Solidity types:
- `./gradlew :bivrost-solidity-types-generator:runSolidityTypeGenerator`
* Add library artifacts to local maven:
- `./gradlew :bivrost-utils:uploadArchives`
- `./gradlew :bivrost-solidity-types:uploadArchives`
- `./gradlew :bivrost-abi-parser:uploadArchives`
- `./gradlew :bivrost-gradle-plugin:uploadArchives`
* Uncomment `include ':sample:app'` in the `settings.gradle` to include sample app module.* Build sample app. This should also generate the class `MultiSigWalletWithDailyLimit`