io.kriptal.ethers.abigen-plugin
Owner: Kriptal.io
A plugin that generates JVM contract bindings for Ethereum smart contracts
https://github.com/kr1ptal/ethers-kt
Sources: https://github.com/kr1ptal/ethers-kt.git
Version 1.2.1 (latest)
Created 16 September 2024.
A plugin that generates JVM contract bindings for Ethereum smart contracts
Add this plugin to your build using the plugins DSL:
plugins {
id("io.kriptal.ethers.abigen-plugin") version "1.2.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.kriptal.ethers.abigen-plugin:io.kriptal.ethers.abigen-plugin.gradle.plugin:1.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.kriptal.ethers.abigen-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.kriptal.ethers.abigen-plugin:io.kriptal.ethers.abigen-plugin.gradle.plugin:1.2.1") } } apply(plugin = "io.kriptal.ethers.abigen-plugin")
- Applying plugins to all subprojects .