π οΈSetup
On your project, just import our Nugget Packages.
There's Phantasma.Core, Phantasma.Business, Phantasma.Tendermint, Phatnasma.Tendermint.RPC
For almost every project the most used ones will be:
Phantasma.Core
Phantasma.Business
Because those two packages contains the most relevant information, such as, Address's and all of the Core types used in the Phantasma Blockchain. There's also the specific class for preparing a Transaction and Sending it to the chain.
Import Nugget
Phantasma.Business -> https://www.nuget.org/packages/Phantasma.Business
Phantasma.Core -> https://www.nuget.org/packages/Phantasma.Core
Phantasma.Tendermint -> https://www.nuget.org/packages/Phantasma.Tendermint
Phantasma.Tendermint.RPC -> https://www.nuget.org/packages/Phantasma.Tendermint.RPC
To import the nugget, you can use the nugget window on the Visual Studio or Rider.
Or use the command line
dotnet add package Phantasma.Core --version 1.0.3
dotnet add package Phantasma.Business --version 1.0.5
dotnet add package Phantasma.Tendermint --version 1.0.1
dotnet add package Phantasma.Tendermint.RPC --version 1.0.0
Last updated