commonMain.io.polywrap.configBuilder.NativeBundle.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polywrap-client Show documentation
Show all versions of polywrap-client Show documentation
Polywrap Client for JVM and Android
package io.polywrap.configBuilder
/**
* Default configuration bundles are defined in the FFI native code.
* They implement the [Bundle] interface and can be added to a [ConfigBuilder].
* However, they cannot be used to override other configuration values.
*/
enum class NativeBundle {
/**
* The System bundle contains packages that interface with the host system, including:
* - filesystem
* - HTTP
*/
System,
/**
* The Web3 bundle contains packages that interface with decentralized networks like Ethereum and IPFS.
*/
Web3
}