You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following code snippet inside onTransaction block
const tx = await aa.createSignedUserOp({
target: (transaction.to as unknown) as string,
value: (transaction.value as unknown) as string,
data: (transaction.data as unknown) as string,
})
const client = await HttpClient();
await client.sendUserOpToBundler(tx);
return {
content: panel([
heading("Welcome to AA Snap!"),
text(
"If you want to sign using your **SCW**, please click the **REJECT** button below."
),
text(
"You will be taken to the AA Snap UI where you can sign the transaction."
),
text("or **CONFIRM** here to sign using your **EOA**"),
heading("Transaction details :"),
],),
};
Is there a way snap could return the insight without waiting for the signing since it's not accessing any data from it
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In the following code snippet inside onTransaction block
Is there a way snap could return the insight without waiting for the signing since it's not accessing any data from it
Beta Was this translation helpful? Give feedback.
All reactions