hammers
November 29, 2022, 11:54am
1
Is there anyone on here that has used the .net SDK?
I want to evaluate it, and looking to see if its in use.
Downloaded it, and opened ConcordiumNetSdk.TestConsoleApp
What is the IP address in the code? Looking for an address for TestNet to get up and running.
using ConcordiumNetSdk;
Connection connection = new Connection
{
Address = "http://34.71.98.161:10001",
AuthenticationToken = "rpcadmin"
};
ConcordiumNodeClient concordiumNodeClient = new ConcordiumNodeClient(connection);
NHS
November 30, 2022, 9:05am
2
We use Rust SDK, but there is some good documentation here (if you did not see this): GitHub - Concordium/concordium-net-sdk .
You need to set up Concoridum Node Client for test net and connect to the node (IP)
hammers
November 30, 2022, 9:17am
3
Hi NHS,
Thanks for your comment.
How do you find the IP for test net?
NHS
November 30, 2022, 9:30am
4
Hi, I guess you need a Node? [if you install Node Client it should work just fine.]
(Run a node on Concordium — Concordium documentation )
hammers
November 30, 2022, 2:42pm
5
Is there any way to do this without running a node?
Is there any public endpoint which people can use?
td202
December 1, 2022, 11:57am
6
Hi hammers,
Concordium doesn’t provide a public endpoint for testnet, and I’m not aware of anyone else doing so. Unfortunately, this does mean you have to run your own node.
Thanks td202, I appreciate the feedback