Skip to content

Commit 18735d8

Browse files
committed
feat(ts-sdk): first proper publish
1 parent 98336ce commit 18735d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ts-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unionlabs/sdk",
3-
"version": "1.0.5",
3+
"version": "1.0.7",
44
"type": "module",
55
"license": "MIT",
66
"author": "@unionlabs",
@@ -11,7 +11,8 @@
1111
},
1212
"exports": {
1313
".": "./dist/src/index.js",
14-
"./evm": "./dist/src/evm/index.js"
14+
"./evm": "./dist/src/evm/index.js",
15+
"./evm/abi": "./dist/src/evm/abi/index.js"
1516
},
1617
"files": [
1718
"package.json",
@@ -24,7 +25,6 @@
2425
],
2526
"devDependencies": {
2627
"biome": "^0.3.3",
27-
"tsup": "^8.4.0",
2828
"typescript": "^5.8.2",
2929
"vitest": "^3.0.8"
3030
}

ts-sdk/test/evm.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe("abi", () => {
88
expect(ucs03abi.length).toBeGreaterThan(0)
99

1010
// Check that it has the expected functions
11-
const functionNames = ucs03abi.map(item => item.name)
11+
const functionNames = ucs03abi.filter(item => item.type === "function").map(item => item.name)
1212
expect(functionNames).toContain("transferV2")
1313
expect(functionNames).toContain("transferAndCall")
1414
})

0 commit comments

Comments
 (0)