Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phantasma-io/phantasmarpcclient

Phantasma RPC Client, Connect to Phantasma using C#
https://github.com/phantasma-io/phantasmarpcclient

blockchain crypto cryptocurrency csharp-sdk layer1 phantasma phantasmachain phantasmaio rpc

Last synced: 3 days ago
JSON representation

Phantasma RPC Client, Connect to Phantasma using C#

Awesome Lists containing this project

README

        

# Phantasma RPC Client

C# client to interact via RCP with an Phantasma node.

## Sample code
```c#
var rpcURl = @"http://localhost:5101/";
var client = new ApiClient(rpcURl);
var accountAPI = new AccountApi(client);
var address = "P2K56BVqGndVhEmyaX9CVcqGHGkAfKUgeTnK1LfDjddqFPn";
var account = accountAPI.ApiV1GetAccountGet(address);
```