2024-04-24 09:46:03 +00:00
|
|
|
# frostfs-sdk-csharp
|
|
|
|
|
2024-04-24 11:58:22 +00:00
|
|
|
C# implementation of FrostFS SDK.
|
|
|
|
|
2024-05-02 08:18:44 +00:00
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
### Get the key for your wallet
|
|
|
|
|
|
|
|
1. Get the address
|
|
|
|
```bash
|
|
|
|
cat <path_to_your_wallet> | jq .accounts[0].address | tr -d '"'
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Get the key
|
|
|
|
```bash
|
|
|
|
neo-go wallet export -w <path_to_your_wallet> -d <address_from_p1>
|
|
|
|
```
|
|
|
|
|