Getting Started
In this chapter, we'll see how to install Sui binaries and how to add Sui client libraries as dependencies. Let's start with installing Sui binaries.
Sui Installation
Installing Sui for development is very easy with package managers. In your OS' terminal or shell, run the appropriate command as shown below:
In order to interact with Sui, we need a client. If you've run either of the above commands, you have a binary client installed that you can confirm by running sui --version
in you terminal or shell. If successful, this should display the version of Sui installed.
To integrate the client as a library into your project, follow the instructions below:
Client Library Installation
The client libraries are available for various platforms. Ranging from specific platform libraries to multiplatform libraries. Follow the instructions below:
If you have a Kotlin Multiplaform project, add the following dependency to your projects' common sourceSet:
For a purely Android project, add the following as a dependency:
For a JVM projects, add the following as a dependency:
Sui Client
Once you've successfully added the dependencies, create a Sui
instance as showed below:
This serves as the main entry point for the client. By default, it connects to the devnet
network. However, you can customize the network configuration as follows:
You can also set other things like connectAttempts
, retryOnServerErrors
, proxy
, and much more:
Our client is now ready for use. We can now call the various available methods on this sui
object.