🛠️Setup

Good to know: Now to enable your app to interact with the Phantasma Blockchain is easy than ever before.

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

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