Skip to content

Commit 2c658bf

Browse files
committed
3.1.0
1 parent 14c465e commit 2c658bf

File tree

189 files changed

+45491
-67048
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+45491
-67048
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,20 @@ using var rpcClient = new WebSocketRpcClient(endpoint);
7171
await rpcClient.Connect();
7272

7373
var daemon = new DaemonProxy(rpcClient, "eventing_testharness");
74-
await daemon.RegisterService("wallet_ui"); // this listens for the messages sent to the ui
74+
// this listens for the messages sent to the ui
75+
await daemon.RegisterService("wallet_ui");
76+
daemon.StateChanged += (sender, data) => Console.WriteLine($"daemon state change: {data}");
7577

7678
var farmer = daemon.CreateProxyFrom<FarmerProxy>();
77-
farmer.ConnectionsChanged += (sender, data) => Console.WriteLine($"Connection count: {data.Count()}");
79+
farmer.ConnectionAdded += (sender, data) => Console.WriteLine($"Connection added: {data}");
7880
farmer.NewFarmingInfo += (sender, data) => Console.WriteLine($"Farming info: {data}");
79-
farmer.NewSignagePoint += (sender, data) => Console.WriteLine($"Signage Point: {data}");
81+
farmer.NewSignagePoint += (sender, data) => Console.WriteLine($"Signage point: {data}");
8082

8183
while (true)
8284
{
8385
await Task.Delay(100);
8486
}
87+
8588
```
8689

8790
### Build

docs/api/chia.dotnet.AmountFilter.html

Lines changed: 189 additions & 205 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.AmountWithPuzzlehash.html

Lines changed: 239 additions & 257 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.Announcement.html

Lines changed: 214 additions & 231 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.AssetInfo.html

Lines changed: 214 additions & 231 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.AutoClaimSettings.html

Lines changed: 239 additions & 257 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.BlockCountMetrics.html

Lines changed: 214 additions & 231 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.BlockRecord.html

Lines changed: 813 additions & 854 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.BlockSpendWithConditions.html

Lines changed: 189 additions & 205 deletions
Large diffs are not rendered by default.

docs/api/chia.dotnet.BlockchainState.html

Lines changed: 490 additions & 518 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)