UNPKG

@metaplex-foundation/mpl-auction

Version:
105 lines 3.52 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PlaceBid = exports.PlaceBidArgs = void 0; const mpl_core_1 = require("@metaplex-foundation/mpl-core"); const web3_js_1 = require("@solana/web3.js"); const AuctionProgram_1 = require("../AuctionProgram"); const spl_token_1 = require("@solana/spl-token"); class PlaceBidArgs extends mpl_core_1.Borsh.Data { constructor() { super(...arguments); this.instruction = 6; } } exports.PlaceBidArgs = PlaceBidArgs; PlaceBidArgs.SCHEMA = PlaceBidArgs.struct([ ['instruction', 'u8'], ['amount', 'u64'], ['resource', 'pubkeyAsString'], ]); class PlaceBid extends mpl_core_1.Transaction { constructor(options, params) { super(options); const { feePayer } = options; const { auction, auctionExtended, bidderPot, bidderMeta, bidder, bidderToken, bidderPotToken, tokenMint, transferAuthority, resource, amount, } = params; const data = PlaceBidArgs.serialize({ resource: resource.toString(), amount }); this.add(new web3_js_1.TransactionInstruction({ keys: [ { pubkey: bidder, isSigner: true, isWritable: false, }, { pubkey: bidderToken, isSigner: false, isWritable: true, }, { pubkey: bidderPot, isSigner: false, isWritable: true, }, { pubkey: bidderPotToken, isSigner: false, isWritable: true, }, { pubkey: bidderMeta, isSigner: false, isWritable: true, }, { pubkey: auction, isSigner: false, isWritable: true, }, { pubkey: auctionExtended, isSigner: false, isWritable: true, }, { pubkey: tokenMint, isSigner: false, isWritable: true, }, { pubkey: transferAuthority, isSigner: true, isWritable: false, }, { pubkey: feePayer, isSigner: true, isWritable: false, }, { pubkey: web3_js_1.SYSVAR_CLOCK_PUBKEY, isSigner: false, isWritable: false, }, { pubkey: web3_js_1.SYSVAR_RENT_PUBKEY, isSigner: false, isWritable: false, }, { pubkey: web3_js_1.SystemProgram.programId, isSigner: false, isWritable: false, }, { pubkey: spl_token_1.TOKEN_PROGRAM_ID, isSigner: false, isWritable: false, }, ], programId: AuctionProgram_1.AuctionProgram.PUBKEY, data, })); } } exports.PlaceBid = PlaceBid; //# sourceMappingURL=PlaceBid.js.map