https://github.com/dkackman/chia-dotnet-clvm
Native .NET implementation of the chia CLVM.
https://github.com/dkackman/chia-dotnet-clvm
chia chia-blockchain clvm xch
Last synced: about 1 year ago
JSON representation
Native .NET implementation of the chia CLVM.
- Host: GitHub
- URL: https://github.com/dkackman/chia-dotnet-clvm
- Owner: dkackman
- License: apache-2.0
- Created: 2024-01-13T22:41:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-07T16:20:46.000Z (over 1 year ago)
- Last Synced: 2025-04-10T07:02:16.059Z (about 1 year ago)
- Topics: chia, chia-blockchain, clvm, xch
- Language: C#
- Homepage: https://dkackman.github.io/chia-dotnet-clvm/
- Size: 7.67 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chia-dotnet-clvm
[](https://github.com/dkackman/chia-dotnet-clvm/actions/workflows/dotnet.yml)
[](https://github.com/dkackman/chia-dotnet-clvm/actions/workflows/github-code-scanning/codeql)
[](https://www.nuget.org/packages/chia-dotnet-clvm/)
A direct port of [Rigidity](https://github.com/Rigidity)'s [node-clvm-lib](https://github.com/Chia-Network/node-clvm-lib).
## See Also
- [Documentation](https://dkackman.github.io/chia-dotnet-clvm/)
- [chia-dotnet](https://www.nuget.org/packages/chia-dotnet/)
- [chia-dotnet-bls](https://www.nuget.org/packages/chia-dotnet-bls/)
- [Chialisp](https://chialisp.com/)
- [chia-blockchain](https://chia.net)
## Examples
### Hello World
```csharp
var puzzleProgram = Program.FromSource("(q . \"hello world\")");
var result = puzzleProgram.Compile();
Console.WriteLine(result.Value);
Console.WriteLine(result.Cost);
```
___
_chia and its logo are the registered trademark or trademark of Chia Network, Inc. in the United States and worldwide._