@gorbchain-xyz/chaindecode
Version:
GorbchainSDK V1.3+ - Complete Solana development toolkit with advanced cryptography, messaging, and collaboration features. Build secure applications with blockchain, DeFi, and end-to-end encryption.
28 lines (27 loc) • 896 B
JavaScript
// Name Service decoders and builders
// --- Decoders ---
export function decodeRegisterName(_ix, _programId) {
// TODO: Implement registerName instruction decoding
return { type: 'registerName', data: {} };
}
export function decodeUpdateName(_ix, _programId) {
// TODO: Implement updateName instruction decoding
return { type: 'updateName', data: {} };
}
export function decodeTransferName(_ix, _programId) {
// TODO: Implement transferName instruction decoding
return { type: 'transferName', data: {} };
}
// --- Builders ---
export function buildRegisterName(_args) {
// TODO: Implement registerName instruction builder
return {};
}
export function buildUpdateName(_args) {
// TODO: Implement updateName instruction builder
return {};
}
export function buildTransferName(_args) {
// TODO: Implement transferName instruction builder
return {};
}