@metaplex-foundation/mpl-auction-house
Version:
MPL Auction House JavaScript API.
81 lines • 3.2 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.createUpdateAuctioneerInstruction = exports.updateAuctioneerInstructionDiscriminator = exports.updateAuctioneerStruct = void 0;
const beet = __importStar(require("@metaplex-foundation/beet"));
const web3 = __importStar(require("@solana/web3.js"));
const AuthorityScope_1 = require("../types/AuthorityScope");
exports.updateAuctioneerStruct = new beet.FixableBeetArgsStruct([
['instructionDiscriminator', beet.uniformFixedSizeArray(beet.u8, 8)],
['scopes', beet.array(AuthorityScope_1.authorityScopeBeet)],
], 'UpdateAuctioneerInstructionArgs');
exports.updateAuctioneerInstructionDiscriminator = [103, 255, 80, 234, 94, 56, 168, 208];
function createUpdateAuctioneerInstruction(accounts, args, programId = new web3.PublicKey('hausS13jsjafwWwGqZTUQRmWyvyxn9EQpqMwV1PBBmk')) {
var _a;
const [data] = exports.updateAuctioneerStruct.serialize({
instructionDiscriminator: exports.updateAuctioneerInstructionDiscriminator,
...args,
});
const keys = [
{
pubkey: accounts.auctionHouse,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.authority,
isWritable: true,
isSigner: true,
},
{
pubkey: accounts.auctioneerAuthority,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.ahAuctioneerPda,
isWritable: true,
isSigner: false,
},
{
pubkey: (_a = accounts.systemProgram) !== null && _a !== void 0 ? _a : web3.SystemProgram.programId,
isWritable: false,
isSigner: false,
},
];
if (accounts.anchorRemainingAccounts != null) {
for (const acc of accounts.anchorRemainingAccounts) {
keys.push(acc);
}
}
const ix = new web3.TransactionInstruction({
programId,
keys,
data,
});
return ix;
}
exports.createUpdateAuctioneerInstruction = createUpdateAuctioneerInstruction;
//# sourceMappingURL=updateAuctioneer.js.map