Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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#
- Host: GitHub
- URL: https://github.com/phantasma-io/phantasmarpcclient
- Owner: phantasma-io
- License: mit
- Created: 2024-03-11T10:59:29.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-11T10:59:44.000Z (8 months ago)
- Last Synced: 2024-05-01T00:44:46.546Z (7 months ago)
- Topics: blockchain, crypto, cryptocurrency, csharp-sdk, layer1, phantasma, phantasmachain, phantasmaio, rpc
- Language: C#
- Homepage:
- Size: 177 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```