Solana.Moonshot 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Solana.Moonshot --version 1.0.0                
NuGet\Install-Package Solana.Moonshot -Version 1.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Solana.Moonshot" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Solana.Moonshot --version 1.0.0                
#r "nuget: Solana.Moonshot, 1.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Solana.Moonshot as a Cake Addin
#addin nuget:?package=Solana.Moonshot&version=1.0.0

// Install Solana.Moonshot as a Cake Tool
#tool nuget:?package=Solana.Moonshot&version=1.0.0                

Solnet.Moonshot

Solnet.Moonshot is a C# client implementation of the Moonshot on-chain program.

Available public instructions:

Buy

Sell

Private instructions that require backend authority or migration authority from Dexscreener:

Mint

MigrateFunds

Config

Quick start example:

using Solnet.Rpc;
using Solnet.Wallet;
using PublicKey = Solnet.Wallet.PublicKey;
using Solnet.Moonshot;

var rpc = ClientFactory.GetClient(Cluster.MainNet);

Account botAccount = Account.FromSecretKey("PRIVATE_KEY_HERE");

MoonshotClient moonshotClient = new MoonshotClient(rpc);
//Everything required in the instruction keys can be found in an existing buy/sell transaction. Buy or sell through dexscreener then copy the data from the TX on solscan to fill in the object properties for a specific moonshot
BuyAccounts buyAccounts = new BuyAccounts()
{
    Sender = new PublicKey("CHANGE_TO_YOUR_WALLET_ADDRESS"),
    SenderTokenAccount = new PublicKey("CHANGE_TO_YOUR_ASSOCIATED_TOKEN_ADDRESS"),
    CurveAccount = new PublicKey("CHANGE_TO_CURVE_ACCOUNT_ADDRESS"),
    CurveTokenAccount = new PublicKey("CHANGE_TO_CURVE_TOKEN_ACCOUNT_ADDRESS"),
    DexFee = new PublicKey("CHANGE_TO_DEX_FEE_ADDRESS"),
    HelioFee = new PublicKey("CHANGE_TO_HELIO_FEE_ADDRESS"),
    Mint = new PublicKey("CHANGE_TO_TOKEN_ADDRESS"),
    ConfigAccount = new PublicKey("CHANGE_TO_TOKEN_CONFIG_ADDRESS"),
    TokenProgram = new PublicKey("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"),
    AssociatedTokenProgram = new PublicKey("ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"),
    SystemProgram = new PublicKey("11111111111111111111111111111111")

};
ulong token_amount = 10000;
ulong SOL_AMOUNT_AS_LAMPORTS = 5000000; //0.005 sol

TradeParams tParams = new TradeParams()
{
    Amount = token_amount * (ulong)1000000000,
    CollateralAmount = SOL_AMOUNT_AS_LAMPORTS,
    SlippageBps = 100

};

 
string signedTX = moonshotClient.SendBuyAsync(buyAccounts, tParams, botAccount.PublicKey, botAccount).Result;
var response = await rpc.SendTransactionAsync(Convert.FromBase64String(signedTX));

Console.WriteLine(response.Result);

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 89 7/11/2024
1.0.2 74 7/10/2024
1.0.0 72 7/5/2024