65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import {
|
|
Blockfrost,
|
|
Constr,
|
|
Data,
|
|
Lucid,
|
|
SpendingValidator,
|
|
TxHash,
|
|
fromHex,
|
|
toHex,
|
|
utf8ToHex
|
|
} from "https://deno.land/x/lucid@0.8.3/mod.ts";
|
|
import * as cbor from "https://deno.land/x/cbor@v1.4.1/index.js";
|
|
|
|
const lucid = await Lucid.new(
|
|
new Blockfrost(
|
|
"https://cardano-preview.blockfrost.io/api/v0",
|
|
Deno.env.get('BLOCKFROST_API_KEY'),
|
|
),
|
|
"Preview",
|
|
);
|
|
|
|
lucid.selectWalletFromPrivateKey(await Deno.readTextFile("./key.sk"));
|
|
|
|
const validator = await readValidator();
|
|
|
|
const utxo = { txHash: Deno.args[0], outputIndex: 0 };
|
|
|
|
const redeemer = Data.to(new Constr(0, [ utf8ToHex("Hello, World!")]) );
|
|
|
|
const txUnlock = await unlock(utxo, { from: validator, using: redeemer });
|
|
|
|
await lucid.awaitTx(txUnlock);
|
|
|
|
console.log(`1 ADA recovered from the contract
|
|
Tx ID: ${txUnlock}
|
|
Redeemer: ${redeemer}
|
|
`);
|
|
|
|
// --- Supporting functions
|
|
|
|
async function unlock(ref, { from, using }): Promise<TxHash> {
|
|
const [utxo] = await lucid.utxosByOutRef([ref]);
|
|
|
|
const tx = await lucid
|
|
.newTx()
|
|
.collectFrom([utxo], using)
|
|
.addSigner(await lucid.wallet.address())
|
|
.attachSpendingValidator(from)
|
|
.complete();
|
|
|
|
const signedTx = await tx
|
|
.sign()
|
|
.complete();
|
|
|
|
return signedTx.submit();
|
|
}
|
|
|
|
async function readValidator(): Promise<SpendingValidator> {
|
|
const validator = JSON.parse(await Deno.readTextFile("plutus.json")).validators[0];
|
|
return {
|
|
type: "PlutusV2",
|
|
script: toHex(cbor.encode(fromHex(validator.compiledCode))),
|
|
};
|
|
}
|