Skip to content

Commit 61e9f06

Browse files
authored
Merge pull request #2 from nachopiris/fix-lint-errors
Add send nft option ton new transaction
2 parents 336e93f + 9c7c9ca commit 61e9f06

File tree

6 files changed

+809
-240
lines changed

6 files changed

+809
-240
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"dependencies": {
1414
"@0xsequence/account": "^1.9.13",
1515
"@0xsequence/core": "^1.9.13",
16+
"@0xsequence/indexer": "^2.0.4",
1617
"@0xsequence/network": "^1.9.13",
1718
"@0xsequence/sessions": "^1.9.13",
1819
"@0xsequence/signhub": "^1.9.13",

pnpm-lock.yaml

Lines changed: 13 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function parseFunctionSelector(selector: string): ParsedFunctionSelector
6767
}
6868

6969
for (const input of res.inputs) {
70-
if (!/^(address|uint\d+|int\d+|bool|bytes\d*|string)$/.test(input.type)) {
70+
if (!/^(address|uint\d+|int\d+|bool|bytes\d*|string|uint256\[\])$/.test(input.type)) {
7171
throw new Error('Invalid type: ' + input.type)
7272
}
7373
}

0 commit comments

Comments
 (0)