This is a sample C# SDK for XuperUnion.
Now only support the following operations:
- Query Account Balance
- Query TX
- Transfer
- Create Contract Account
- Deploy WASM Contract
- Invoke Contract
- Query Block
- Query Account's Contract
- Query Address in which Contract Accounts
This SDK is based on .Net Core 3.x
, please make sure you've installed lastes .Net Core SDK on your environment.
Windows/Linux/MacOS are all supported, but only tested on MacOS :).
Install XuperSDK from dotnet cli:
dotnet add package XuperSDK
Or you can install from Visual Studio in the nuget package manager, find "XuperSDK" and install it.
Create a instance of XuperSDK.XChainClient
.
The following code snippet initialize SDK client with a private key store at ./data/keys
folder and the XuperUnion node's GRPC endpoint 127.0.0.1:37101
.
var client = new XChainClient();
if (!client.Init("./data/keys", "127.0.0.1:37101"))
{
Console.WriteLine("Create client failed");
return;
}
Please make sure the GRPC endpoint is valid, otherwise exception would be throwed in runtime.