@heyanon/sdk 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapter/types.d.ts +7 -0
- package/package.json +1 -1
package/dist/adapter/types.d.ts
CHANGED
|
@@ -45,6 +45,13 @@ export interface FunctionOptions {
|
|
|
45
45
|
readonly getRecipient: (type: WalletType) => Promise<string>;
|
|
46
46
|
readonly getUserTokens: () => Promise<UserToken[]>;
|
|
47
47
|
readonly getCcxtExchange: (name: keyof typeof exchanges) => Promise<Exchange>;
|
|
48
|
+
readonly updateUserTokens: (props: {
|
|
49
|
+
evmAddresses: string[];
|
|
50
|
+
solanaAddresses: string[];
|
|
51
|
+
tonAddresses: string[];
|
|
52
|
+
}) => Promise<{
|
|
53
|
+
[key: string]: string;
|
|
54
|
+
}>;
|
|
48
55
|
}
|
|
49
56
|
export interface AdapterExport {
|
|
50
57
|
readonly tools: AiTool[];
|