inscribeTransfer (Deprecated)

Inscribe Transfer

Method

async function inscribeTransfer(
    ticker: string, 
    amount: string,
): string

Params

  • ticker — required string the hex string of psbt to sign

  • amount — required string

Response

txid — string

Example

const provider = (window.$onekey && window.$onekey.btc) || window.unisat;

const ticker = "010203"
const amount = "100"
const txid = async provider.signPsbt(psbtHex);

Last updated