File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @unionlabs/sdk" ,
3- "version" : " 1.0.5 " ,
3+ "version" : " 1.0.7 " ,
44 "type" : " module" ,
55 "license" : " MIT" ,
66 "author" : " @unionlabs" ,
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" ,
2425 ],
2526 "devDependencies" : {
2627 "biome" : " ^0.3.3" ,
27- "tsup" : " ^8.4.0" ,
2828 "typescript" : " ^5.8.2" ,
2929 "vitest" : " ^3.0.8"
3030 }
Original file line number Diff line number Diff 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 } )
You can’t perform that action at this time.
0 commit comments