Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDK] feat: Support account overrides in engineAccount() #6496

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fifty-hoops-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"thirdweb": patch
---

Support account overrides in engineAccount()
42 changes: 42 additions & 0 deletions packages/thirdweb/src/wallets/engine/engine-account.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import { sepolia } from "../../chains/chain-definitions/sepolia.js";
import { getContract } from "../../contract/contract.js";
import { claimTo } from "../../extensions/erc1155/drops/write/claimTo.js";
import { sendTransaction } from "../../transaction/actions/send-transaction.js";
import { smartWallet } from "../smart/smart-wallet.js";
import { generateAccount } from "../utils/generateAccount.js";
import { engineAccount } from "./index.js";

describe.runIf(
Expand Down Expand Up @@ -66,4 +68,44 @@ describe.runIf(
});
expect(tx).toBeDefined();
});

it.skip("should send a session key tx", async () => {
const personalAccount = await generateAccount({
client: TEST_CLIENT,
});
const smart = smartWallet({
chain: sepolia,
sponsorGas: true,
sessionKey: {
address: process.env.ENGINE_WALLET_ADDRESS_EOA as string,
permissions: {
approvedTargets: "*",
},
},
});
const smartAccount = await smart.connect({
client: TEST_CLIENT,
personalAccount,
});

const engineAcc = engineAccount({
engineUrl: process.env.ENGINE_URL as string,
authToken: process.env.ENGINE_AUTH_TOKEN as string,
walletAddress: process.env.ENGINE_WALLET_ADDRESS_EOA as string,
chain: sepolia,
overrides: {
accountAddress: smartAccount.address,
},
});
const tx = await sendTransaction({
account: engineAcc,
transaction: {
client: TEST_CLIENT,
chain: sepolia,
to: TEST_ACCOUNT_B.address,
value: 0n,
},
});
expect(tx).toBeDefined();
});
});
32 changes: 29 additions & 3 deletions packages/thirdweb/src/wallets/engine/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@
* The backend wallet to use for sending transactions inside engine.
*/
walletAddress: string;
overrides?: {
/**
* The address of the smart account to act on behalf of. Requires your backend wallet to be a valid signer on that smart account.
*/
accountAddress?: string;
/**
* The address of the smart account factory to use for creating smart accounts.
*/
accountFactoryAddress?: string;
/**
* The salt to use for creating the smart account.
*/
accountSalt?: string;
};
/**
* The chain to use for signing messages and typed data (smart backend wallet only).
*/
Expand Down Expand Up @@ -55,7 +69,7 @@
* ```
*/
export function engineAccount(options: EngineAccountOptions): Account {
const { engineUrl, authToken, walletAddress, chain } = options;
const { engineUrl, authToken, walletAddress, chain, overrides } = options;

// these are shared across all methods
const headers: HeadersInit = {
Expand All @@ -64,6 +78,16 @@
"Content-Type": "application/json",
};

if (overrides?.accountAddress) {
headers["x-account-address"] = overrides.accountAddress;
}

Check warning on line 83 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L82-L83

Added lines #L82 - L83 were not covered by tests
if (overrides?.accountFactoryAddress) {
headers["x-account-factory-address"] = overrides.accountFactoryAddress;
}

Check warning on line 86 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L85-L86

Added lines #L85 - L86 were not covered by tests
if (overrides?.accountSalt) {
headers["x-account-salt"] = overrides.accountSalt;
}

Check warning on line 89 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L88-L89

Added lines #L88 - L89 were not covered by tests

return {
address: walletAddress,
sendTransaction: async (transaction: SendTransactionOption) => {
Expand Down Expand Up @@ -181,12 +205,14 @@
domain: _typedData.domain,
types: _typedData.types,
value: _typedData.message,
primaryType: _typedData.primaryType,
chainId: chain?.id,

Check warning on line 209 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L208-L209

Added lines #L208 - L209 were not covered by tests
}),
});
if (!engineRes.ok) {
engineRes.body?.cancel();
const body = await engineRes.text();

Check warning on line 213 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L213

Added line #L213 was not covered by tests
throw new Error(
`Engine request failed with status ${engineRes.status}`,
`Engine request failed with status ${engineRes.status} - ${body}`,

Check warning on line 215 in packages/thirdweb/src/wallets/engine/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/engine/index.ts#L215

Added line #L215 was not covered by tests
);
}
const engineJson = (await engineRes.json()) as {
Expand Down