Socket
Socket
Sign inDemoInstall

@renec-foundation/celeb-duel-sdk

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@renec-foundation/celeb-duel-sdk

Typescript SDK to interact with Celeb Duel program.


Version published
Maintainers
1
Created
Source

celeb-duel-sdk

How to use

1. Check user can vote

import {
  PublicKey,
  Connection,
  Keypair,
  Commitment,
} from "@solana/web3.js";
import { AnchorProvider, Wallet } from "@project-serum/anchor";
import { Context, DuelClient, CELEB_DUEL_PROGRAM_ID, DUEL_CONFIG_ACCOUNT } from "@renec-foundation/celeb-duel-sdk";


...

// yourKey = Keypair.fromSecretKey(Uint8Array.from([124, 149, 222, 31, 236, 142, 29, 95...]));

const commitment: Commitment = "confirmed";
const connection = new Connection(const.RPC_ENDPOINT_URL, { commitment });
const wallet = new Wallet(yourKey);
const provider = new AnchorProvider(connection, wallet, { commitment });

const ctx = Context.withProvider(provider, new PublicKey(CELEB_DUEL_PROGRAM_ID));

const duelClient = await DuelClient.getClient(ctx, new PublicKey(DUEL_CONFIG_ACCOUNT));

const canVote = await duelClient.canVote(duelId, user.publicKey);
console.log(`User can vote now?: ${canVote}`)

2. Vote One

import {
  PublicKey,
  Connection,
  Keypair,
  Commitment,
} from "@solana/web3.js";
import { AnchorProvider, Wallet } from "@project-serum/anchor";
import { Context, DuelClient, CELEB_DUEL_PROGRAM_ID, DUEL_CONFIG_ACCOUNT } from "@renec-foundation/celeb-duel-sdk";


...

// yourKey = Keypair.fromSecretKey(Uint8Array.from([124, 149, 222, 31, 236, 142, 29, 95...]));

const commitment: Commitment = "confirmed";
const connection = new Connection(const.RPC_ENDPOINT_URL, { commitment });
const wallet = new Wallet(yourKey);
const provider = new AnchorProvider(connection, wallet, { commitment });

const ctx = Context.withProvider(provider, new PublicKey(CELEB_DUEL_PROGRAM_ID));

const duelClient = await DuelClient.getClient(ctx, new PublicKey(DUEL_CONFIG_ACCOUNT));

// client.buildVoteOneIx(duelId, user, feePayer)
const instructions = [await client.buildVoteOneIx(duelId, user.publicKey, user.publicKey)];
const transaction = new Transaction().add(...instructions);
transaction.recentBlockhash = (
  await connection.getLatestBlockhash("processed")
).blockhash;
transaction.feePayer = user.publicKey;

const recoverTx = Transaction.from(
  transaction.serialize({ requireAllSignatures: false })
);

// Fee Payer Sign
// recoverTx.partialSign(user); ----> user already sign below, uncomment if the feePayer is GasLess service
let signedTx = await userWallet.signTransaction(recoverTx);
await connection.sendRawTransaction(signedTx.serialize());


const userVoteData = await duelClient.getUserByUserPublicKey(user.publicKey);
console.log("userVoteData", userVoteData);

3. Vote Two

import {
  PublicKey,
  Connection,
  Keypair,
  Commitment,
} from "@solana/web3.js";
import { AnchorProvider, Wallet } from "@project-serum/anchor";
import { Context, DuelClient, CELEB_DUEL_PROGRAM_ID, DUEL_CONFIG_ACCOUNT } from "@renec-foundation/celeb-duel-sdk";


...
// yourKey = Keypair.fromSecretKey(Uint8Array.from([124, 149, 222, 31, 236, 142, 29, 95...]));

const commitment: Commitment = "confirmed";
const connection = new Connection(const.RPC_ENDPOINT_URL, { commitment });
const wallet = new Wallet(yourKey);
const provider = new AnchorProvider(connection, wallet, { commitment });

// Build and sign transaction in BE, then encode to send to FE
const ctx = Context.withProvider(provider, new PublicKey(CELEB_DUEL_PROGRAM_ID));

const duelClient = await DuelClient.getClient(ctx, new PublicKey(DUEL_CONFIG_ACCOUNT));

// client.buildVoteTwoIx(duelId, user, feePayer)
const instructions = [await client.buildVoteTwoIx(duelId, user.publicKey, user.publicKey)];
const transaction = new Transaction().add(...instructions);
transaction.recentBlockhash = (
  await connection.getLatestBlockhash("processed")
).blockhash;
transaction.feePayer = user.publicKey;

const recoverTx = Transaction.from(
  transaction.serialize({ requireAllSignatures: false })
);

// Fee Payer Sign
// recoverTx.partialSign(user); ----> user already sign below, uncomment if the feePayer is GasLess service
let signedTx = await userWallet.signTransaction(recoverTx);
await connection.sendRawTransaction(signedTx.serialize());


const userVoteData = await duelClient.getUserByUserPublicKey(user.publicKey);
console.log("userVoteData", userVoteData);

4. Announce Winner

import {
  PublicKey,
  Connection,
  Keypair,
  Commitment,
} from "@solana/web3.js";
import { AnchorProvider, Wallet } from "@project-serum/anchor";
import { Context, DuelClient, CELEB_DUEL_PROGRAM_ID, DuelResult } from "@renec-foundation/celeb-duel-sdk";
import { getOrCreateAssociatedTokenAccount } from "@solana/spl-token";


...
// yourKey = Keypair.fromSecretKey(Uint8Array.from([124, 149, 222, 31, 236, 142, 29, 95...]));

const commitment: Commitment = "confirmed";
const connection = new Connection(const.RPC_ENDPOINT_URL, { commitment });
const wallet = new Wallet(yourKey);
const provider = new AnchorProvider(connection, wallet, { commitment });

const ctx = Context.withProvider(provider, new PublicKey(CELEB_DUEL_PROGRAM_ID));

const duelClient = await DuelClient.getClient(ctx);

const duelInfo = await DuelClient.getDuelById(duelId);

const adminTokenOneAccount = await getOrCreateAssociatedTokenAccount(
    connection,
    yourKey,
    duelInfo.tokenOne,
    yourKey.publicKey
);
const adminTokenTwoAccount = await getOrCreateAssociatedTokenAccount(
    connection,
    yourKey,
    duelInfo.tokenTwo,
    yourKey.publicKey
);

const duelResult = await duelClient.getDuelResult(duelId);
let adminTokenAccount;

switch (duelResult) {
  case DuelResult.OneWin:
    adminTokenAccount = adminTokenOneAccount;
    break;
  case DuelResult.OneWin:
    adminTokenAccount = adminTokenTwoAccount;
    break;
  case DuelResult.Tie:
    throw Error("Tie");
};
const tx = await duelClient.announceWinner(
  duelId,
  adminTokenAccount,
);
const txSignature = await tx.buildAndExecute();

Keywords

FAQs

Package last updated on 09 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc