Inscriptions
Text Inscription
const result = await wallet.inscribeText('Hello blockchain!')
console.log('TXID:', result.txid)
console.log('Type:', result.type) // 'text'
console.log('Size:', result.dataSize) // 17
console.log('Basket:', result.basket) // 'text'JSON Inscription
const result = await wallet.inscribeJSON({
title: 'My Document',
author: 'Alice',
created: Date.now()
})
console.log('Type:', result.type) // 'json'
console.log('Basket:', result.basket) // 'json'File Hash Inscription
Image Hash Inscription
Custom Baskets
Default Baskets
Method
Default Basket
InscriptionResult
Under the Hood
Last updated
