solana-framework
Version:
solana-framework is solana uni-tools for typescript
159 lines • 5.15 kB
JavaScript
;
/**
* This code was GENERATED using the solita package.
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
*
* See: https://github.com/metaplex-foundation/solita
*/
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.createTransferInstruction = exports.transferInstructionDiscriminator = exports.TransferStruct = void 0;
const beet = __importStar(require("@metaplex-foundation/beet"));
const web3 = __importStar(require("@solana/web3.js"));
const TransferArgs_1 = require("../types/TransferArgs");
/**
* @category Instructions
* @category Transfer
* @category generated
*/
exports.TransferStruct = new beet.FixableBeetArgsStruct([
['instructionDiscriminator', beet.u8],
['transferArgs', TransferArgs_1.transferArgsBeet],
], 'TransferInstructionArgs');
exports.transferInstructionDiscriminator = 49;
/**
* Creates a _Transfer_ instruction.
*
* Optional accounts that are not provided default to the program ID since
* this was indicated in the IDL from which this instruction was generated.
*
* @param accounts that will be accessed while the instruction is processed
* @param args to provide as instruction data to the program
*
* @category Instructions
* @category Transfer
* @category generated
*/
function createTransferInstruction(accounts, args, programId = new web3.PublicKey('metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s')) {
const [data] = exports.TransferStruct.serialize({
instructionDiscriminator: exports.transferInstructionDiscriminator,
...args,
});
const keys = [
{
pubkey: accounts.token,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.tokenOwner,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.destination,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.destinationOwner,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.mint,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.metadata,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.edition ?? programId,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.ownerTokenRecord ?? programId,
isWritable: accounts.ownerTokenRecord != null,
isSigner: false,
},
{
pubkey: accounts.destinationTokenRecord ?? programId,
isWritable: accounts.destinationTokenRecord != null,
isSigner: false,
},
{
pubkey: accounts.authority,
isWritable: false,
isSigner: true,
},
{
pubkey: accounts.payer,
isWritable: true,
isSigner: true,
},
{
pubkey: accounts.systemProgram ?? web3.SystemProgram.programId,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.sysvarInstructions,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.splTokenProgram,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.splAtaProgram,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.authorizationRulesProgram ?? programId,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.authorizationRules ?? programId,
isWritable: false,
isSigner: false,
},
];
const ix = new web3.TransactionInstruction({
programId,
keys,
data,
});
return ix;
}
exports.createTransferInstruction = createTransferInstruction;
//# sourceMappingURL=Transfer.js.map