Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 347 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 347 Bytes

Phantasma RPC Client

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

Sample code

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