feat: support clarity 4

This commit is contained in:
stxer
2025-11-17 03:49:53 -06:00
parent ffa915fed2
commit c65b7dbe71
4 changed files with 887 additions and 887 deletions

View File

@@ -1,5 +1,5 @@
{ {
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json", "$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
"assist": { "assist": {
"actions": { "actions": {
"source": { "source": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "stxer", "name": "stxer",
"version": "0.4.4", "version": "0.4.5",
"license": "MIT", "license": "MIT",
"author": "Kyle Fang", "author": "Kyle Fang",
"repository": { "repository": {
@@ -17,7 +17,7 @@
"scripts": { "scripts": {
"analyze": "size-limit --why", "analyze": "size-limit --why",
"build": "dts build", "build": "dts build",
"lint": "dts lint && biome check .", "lint": "biome check .",
"prepare": "dts build", "prepare": "dts build",
"size": "size-limit", "size": "size-limit",
"start": "dts watch", "start": "dts watch",
@@ -53,21 +53,21 @@
} }
], ],
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^2.2.4", "@biomejs/biome": "^2.3.6",
"@size-limit/preset-small-lib": "^11.2.0", "@size-limit/preset-small-lib": "^11.2.0",
"@tsconfig/recommended": "^1.0.10", "@tsconfig/recommended": "^1.0.13",
"@types/node": "^24.3.3", "@types/node": "^24.10.1",
"dts-cli": "^2.0.5", "dts-cli": "^2.0.5",
"husky": "^9.1.7", "husky": "^9.1.7",
"size-limit": "^11.2.0", "size-limit": "^11.2.0",
"tslib": "^2.8.1", "tslib": "^2.8.1",
"tsx": "^4.20.5", "tsx": "^4.20.6",
"typescript": "^5.9.2" "typescript": "^5.9.3"
}, },
"dependencies": { "dependencies": {
"@stacks/network": "^7.2.0", "@stacks/network": "^7.2.0",
"@stacks/stacks-blockchain-api-types": "^7.14.1", "@stacks/stacks-blockchain-api-types": "^7.14.1",
"@stacks/transactions": "^7.2.0", "@stacks/transactions": "^7.3.0",
"c32check": "^2.0.0", "c32check": "^2.0.0",
"clarity-abi": "^0.1.0", "clarity-abi": "^0.1.0",
"ts-clarity": "^0.1.1" "ts-clarity": "^0.1.1"

1754
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -270,7 +270,7 @@ export class SimulationBuilder {
...params, ...params,
deployer: params.deployer ?? this.sender, deployer: params.deployer ?? this.sender,
fee: params.fee ?? 0, fee: params.fee ?? 0,
clarity_version: params.clarity_version ?? ClarityVersion.Clarity3, clarity_version: params.clarity_version ?? ClarityVersion.Clarity4,
}); });
return this; return this;
} }