Forge SDK

To develop applications on top of the forge, you shall pick up a SDK. Forge SDK is intended to make the interaction with the chain built by Forge as easy as possible. All SDK APIs are organized into the following categories:

For more information, please see: Forge SDK overview


Wallet

Wallet package will help user create local account, verify signature, etc. Functions as follows:

Wallet APIs as follows:

Example

Create two local wallets by create_default_wallet, which types are Account, Sha3, Ed25519 ```rust let alice = Wallet::createdefaultwallet()?; let bob = Wallet::createdefaultwallet()?;

```

GRPC

Help user create/get connection with forge chain, and communicate with forge chain by the connection.

Connection