Skip to content

Commit d2e8715

Browse files
authored
fix: type mismatch (#16)
* docs(changeset): Support custom verifier in verifySignature utility * fix(info): allow tokenAddress to be null for better flexibility in BasicInfo interface * docs(changeset): Fix a type mismatch
1 parent 97ee9ad commit d2e8715

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

.changeset/flat-results-read.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@agentstudio/sdk": patch
3+
---
4+
5+
Fix a type mismatch

.changeset/silent-hounds-grin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@agentstudio/sdk": patch
3+
---
4+
5+
Support custom verifier in verifySignature utility

packages/studio-sdk/src/launchpad/info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export interface BasicInfo {
44
name: string;
55
description: string;
66
ticker: string;
7-
tokenAddress: string;
7+
tokenAddress: string | null;
88
tokenStatus: string;
99
walletAddress: string | null;
1010
}

0 commit comments

Comments
 (0)