chore: bump version

This commit is contained in:
Kyle Fang
2024-11-09 13:54:54 +00:00
parent c234f3da49
commit 11d3a225fa
2 changed files with 6 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "stxer",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"author": "Kyle Fang",
"main": "dist/index.js",

View File

@@ -18,6 +18,11 @@ import {
} from '@stacks/transactions';
import { c32addressDecode } from 'c32check';
function runTx(tx: StacksTransactionWire) {
// type 0: run transaction
return tupleCV({ type: uintCV(0), data: bufferCV(tx.serializeBytes()) });
}
export interface SimulationEval {
contract_id: string;
code: string;