We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52345cc commit 1c61758Copy full SHA for 1c61758
packages/plugin-abstract/src/actions/transferAction.ts
@@ -178,6 +178,7 @@ export const transferAction: Action = {
178
decimals
179
);
180
181
+ // @ts-ignore - will fix later
182
hash = await abstractClient.writeContract({
183
chain: abstractTestnet,
184
address: content.tokenAddress as Address,
@@ -186,6 +187,7 @@ export const transferAction: Action = {
186
187
args: [content.recipient as Address, tokenAmount],
188
});
189
} else {
190
+ // @ts-ignore
191
hash = await abstractClient.sendTransaction({
192
193
to: content.recipient as Address,
0 commit comments