Skip to content

Conversation

d4mr
Copy link
Member

@d4mr d4mr commented Jul 10, 2025

If user passes in smartAccountAddress in execution options, we use that as the returned serverWallet.address. This is important for other transaction methods which take in Account and use the Account.address field to set transaction.from during simulations.


PR-Codex overview

This PR focuses on enhancing the server-wallet functionality by improving wallet usage with session keys, particularly for ERC20 token transactions, and adding tests to ensure proper functionality.

Detailed summary

  • Updated getAddress function in server-wallet.ts to return the smart account address when applicable.
  • Modified a test case name to clarify it sends a basic session key transaction.
  • Added a new test for sending a session key transaction that includes ERC20 claiming and transferring.
  • Implemented ERC20 token claiming and transferring logic in the test, verifying balances before and after transactions.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Summary by CodeRabbit

Summary by CodeRabbit

  • Tests

    • Added a new test for session key transactions involving ERC20 token claiming and transferring on the Arbitrum Sepolia chain.
    • Renamed an existing test for clarity regarding basic session key transactions.
  • Refactor

    • Improved internal logic for determining wallet addresses in certain configurations to ensure more accurate address assignment.

…ality; update server wallet address handling for ERC4337 type.
@d4mr d4mr requested review from a team as code owners July 10, 2025 11:29
Copy link

changeset-bot bot commented Jul 10, 2025

🦋 Changeset detected

Latest commit: 2fe3072

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
thirdweb Patch
@thirdweb-dev/nebula Patch
@thirdweb-dev/wagmi-adapter Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Jul 10, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
docs-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 10, 2025 6:40pm
nebula ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 10, 2025 6:40pm
thirdweb_playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 10, 2025 6:40pm
thirdweb-www ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 10, 2025 6:40pm
wallet-ui ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 10, 2025 6:40pm

Copy link
Contributor

coderabbitai bot commented Jul 10, 2025

"""

Walkthrough

A new test was added to the server wallet test suite to verify ERC20 token claiming and transferring using a session key on the Arbitrum Sepolia chain. The server wallet's internal logic was updated to determine its address based on execution options, specifically supporting ERC4337 smart account addresses.

Changes

File(s) Change Summary
packages/thirdweb/src/engine/server-wallet.test.ts Added a test for ERC20 claim/transfer with session key; renamed an existing session key transaction test; added ERC20 utility imports.
packages/thirdweb/src/engine/server-wallet.ts Added internal getAddress helper to select address based on execution options; updated address property assignment accordingly.
.changeset/dirty-candies-shop.md Added changeset documenting a patch fixing engine server wallet usage with session keys.

Sequence Diagram(s)

sequenceDiagram
    participant Test as Test Suite
    participant SmartWallet as Smart Wallet
    participant SessionKey as Session Key Signer
    participant ServerWallet as Server Wallet
    participant ERC20 as ERC20 Contract

    Test->>SmartWallet: Create with SessionKey signer
    Test->>SessionKey: Verify signer is active
    Test->>ServerWallet: Initialize with ERC4337 options
    Test->>ERC20: Query balance of SessionKey signer
    Test->>ERC20: Claim 10 tokens to SmartWallet
    ERC20-->>SmartWallet: 10 tokens credited
    Test->>ERC20: Verify SmartWallet balance increased
    Test->>ERC20: Transfer 10 tokens from SmartWallet to SessionKey signer
    ERC20-->>SessionKey: 10 tokens credited
    Test->>ERC20: Verify balances (SmartWallet: 0, SessionKey: +10)
Loading
sequenceDiagram
    participant Caller as Caller
    participant ServerWallet as serverWallet()
    participant Options as options
    participant ExecutionOptions as executionOptions

    Caller->>ServerWallet: Call serverWallet(options)
    ServerWallet->>Options: Check executionOptions.type
    alt type is "ERC4337" and smartAccountAddress defined
        ServerWallet->>ExecutionOptions: Use smartAccountAddress as address
    else
        ServerWallet->>Options: Use address from options
    end
    ServerWallet-->>Caller: Return ServerWallet object with selected address
Loading

"""


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 785341a and 2fe3072.

📒 Files selected for processing (1)
  • .changeset/dirty-candies-shop.md (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • .changeset/dirty-candies-shop.md
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
  • GitHub Check: Size
  • GitHub Check: Build Packages
  • GitHub Check: Unit Tests
  • GitHub Check: E2E Tests (pnpm, esbuild)
  • GitHub Check: E2E Tests (pnpm, vite)
  • GitHub Check: E2E Tests (pnpm, webpack)
  • GitHub Check: Lint Packages
  • GitHub Check: Analyze (javascript)

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

graphite-app bot commented Jul 10, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • merge-queue - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/thirdweb/src/engine/server-wallet.test.ts (1)

280-390: Comprehensive test validates the ERC4337 fix, but consider refactoring.

The test effectively validates that ERC4337 server wallets use the correct smart account address for transactions. However, there are some potential improvements:

  1. Unit conversion consistency: The test mixes string amounts ("10") with toWei("10") comparisons, which assumes 18 decimals without verification.

  2. Test complexity: This is a very long test covering multiple scenarios. Consider splitting into smaller, focused tests.

  3. Hardcoded contract address: The ERC20 contract address is hardcoded, which might become unreliable over time.

Consider these improvements:

// Verify token decimals first
+const decimals = await getDecimals({ contract: erc20Contract });
+const expectedAmount = BigInt(10) * (10n ** BigInt(decimals));

// Use consistent units throughout
-expect(balanceAfterClaim.value).toBe(toWei("10"));
+expect(balanceAfterClaim.value).toBe(expectedAmount);

// Split into smaller tests
-it("should send a session key tx with ERC20 claiming and transfer", async () => {
+it("should claim ERC20 tokens with session key", async () => {
  // ... claim logic only
+});
+
+it("should transfer ERC20 tokens with session key", async () => {
  // ... transfer logic only
+});
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between bd395a3 and 2c58f52.

📒 Files selected for processing (2)
  • packages/thirdweb/src/engine/server-wallet.test.ts (5 hunks)
  • packages/thirdweb/src/engine/server-wallet.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
`**/*.{ts,tsx}`: Write idiomatic TypeScript with explicit function declarations ...

**/*.{ts,tsx}: Write idiomatic TypeScript with explicit function declarations and return types
Limit each file to one stateless, single-responsibility function for clarity
Re-use shared types from @/types or local types.ts barrels
Prefer type aliases over interface except for nominal shapes
Avoid any and unknown unless unavoidable; narrow generics when possible
Choose composition over inheritance; leverage utility types (Partial, Pick, etc.)
Comment only ambiguous logic; avoid restating TypeScript in prose
Load heavy dependencies inside async paths to keep initial bundle lean (lazy loading)

📄 Source: CodeRabbit Inference Engine (CLAUDE.md)

List of files the instruction was applied to:

  • packages/thirdweb/src/engine/server-wallet.ts
  • packages/thirdweb/src/engine/server-wallet.test.ts
`**/*.test.{ts,tsx}`: Place tests alongside code: `foo.ts` ↔ `foo.test.ts` Use r...

**/*.test.{ts,tsx}: Place tests alongside code: foo.tsfoo.test.ts
Use real function invocations with stub data in tests; avoid brittle mocks
Use Mock Service Worker (MSW) for fetch/HTTP call interception in tests
Keep tests deterministic and side-effect free
Use FORKED_ETHEREUM_CHAIN for mainnet interactions and ANVIL_CHAIN for isolated tests

📄 Source: CodeRabbit Inference Engine (CLAUDE.md)

List of files the instruction was applied to:

  • packages/thirdweb/src/engine/server-wallet.test.ts
🧠 Learnings (3)
📓 Common learnings
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support EIP-1193, EIP-5792, EIP-7702 standards in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to test/src/test-wallets.ts : Predefined test accounts are in `test/src/test-wallets.ts`
Learnt from: joaquim-verges
PR: thirdweb-dev/js#7268
File: packages/thirdweb/src/wallets/in-app/core/wallet/in-app-core.ts:210-216
Timestamp: 2025-06-03T23:44:40.243Z
Learning: EIP7702 wallets do not need special handling for switching chains, unlike EIP4337 wallets which require reconnection when switching chains. In the switchChain method condition, EIP7702 should be intentionally excluded from the reconnection logic.
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Smart wallets with account abstraction in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Unified `Wallet` and `Account` interfaces in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support for in-app wallets (social/email login) in wallet architecture
packages/thirdweb/src/engine/server-wallet.ts (5)
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Smart wallets with account abstraction in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Unified `Wallet` and `Account` interfaces in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support EIP-1193, EIP-5792, EIP-7702 standards in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support for in-app wallets (social/email login) in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to test/src/test-wallets.ts : Predefined test accounts are in `test/src/test-wallets.ts`
packages/thirdweb/src/engine/server-wallet.test.ts (15)
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to test/src/test-wallets.ts : Predefined test accounts are in `test/src/test-wallets.ts`
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support EIP-1193, EIP-5792, EIP-7702 standards in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Smart wallets with account abstraction in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Unified `Wallet` and `Account` interfaces in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/wallets/**/*.{ts,tsx} : Support for in-app wallets (social/email login) in wallet architecture
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to **/*.test.{ts,tsx} : Use `FORKED_ETHEREUM_CHAIN` for mainnet interactions and `ANVIL_CHAIN` for isolated tests
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.489Z
Learning: Applies to src/extensions/**/*.{ts,tsx} : Auto-generated contracts from ABI definitions in extensions
Learnt from: joaquim-verges
PR: thirdweb-dev/js#7268
File: packages/thirdweb/src/wallets/in-app/core/wallet/in-app-core.ts:210-216
Timestamp: 2025-06-03T23:44:40.243Z
Learning: EIP7702 wallets do not need special handling for switching chains, unlike EIP4337 wallets which require reconnection when switching chains. In the switchChain method condition, EIP7702 should be intentionally excluded from the reconnection logic.
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to **/*.test.{ts,tsx} : Use real function invocations with stub data in tests; avoid brittle mocks
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T10:25:29.488Z
Learning: Applies to **/*.test.{ts,tsx} : Keep tests deterministic and side-effect free
Learnt from: MananTank
PR: thirdweb-dev/js#7298
File: apps/dashboard/src/app/nebula-app/move-funds/move-funds.tsx:255-277
Timestamp: 2025-06-06T23:47:55.122Z
Learning: The `transfer` function from `thirdweb/extensions/erc20` accepts human-readable amounts via the `amount` property and automatically handles conversion to base units (wei) by fetching the token decimals internally. Manual conversion using `toWei()` is not required when using the `amount` property.
Learnt from: MananTank
PR: thirdweb-dev/js#7081
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/assets/create/create-token-page-impl.tsx:110-118
Timestamp: 2025-05-20T18:54:15.781Z
Learning: In the thirdweb dashboard's token asset creation flow, the `transferBatch` function from `thirdweb/extensions/erc20` accepts the raw quantity values from the form without requiring explicit conversion to wei using `toUnits()`. The function appears to handle this conversion internally or is designed to work with the values in the format they're already provided.
Learnt from: MananTank
PR: thirdweb-dev/js#7081
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/assets/create/create-token-page-impl.tsx:160-165
Timestamp: 2025-05-20T19:03:35.954Z
Learning: The `claimTo` function in Thirdweb's ERC20 extension does not require converting the quantity to the smallest units (using toUnits) as it handles unit conversion internally or works with the units as provided.
Learnt from: MananTank
PR: thirdweb-dev/js#7315
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/form.ts:25-42
Timestamp: 2025-06-10T00:46:00.514Z
Learning: In NFT creation functions, the setClaimConditions function signatures are intentionally different between ERC721 and ERC1155. ERC721 setClaimConditions accepts the full CreateNFTFormValues, while ERC1155 setClaimConditions accepts a custom object with nftCollectionInfo and nftBatch parameters because it processes batches differently than the entire form data.
Learnt from: MananTank
PR: thirdweb-dev/js#7298
File: apps/dashboard/src/app/nebula-app/move-funds/move-funds.tsx:424-424
Timestamp: 2025-06-06T23:46:08.795Z
Learning: The thirdweb project has an ESLint rule that restricts direct usage of `defineChain`. When it's necessary to use `defineChain` directly, it's acceptable to disable the rule with `// eslint-disable-next-line no-restricted-syntax`.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
  • GitHub Check: E2E Tests (pnpm, esbuild)
  • GitHub Check: E2E Tests (pnpm, vite)
  • GitHub Check: E2E Tests (pnpm, webpack)
  • GitHub Check: Unit Tests
  • GitHub Check: Size
  • GitHub Check: Lint Packages
  • GitHub Check: Build Packages
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (5)
packages/thirdweb/src/engine/server-wallet.ts (2)

269-278: LGTM! Clean implementation of ERC4337 address resolution.

The helper function correctly implements the logic to return the smart account address when execution options specify ERC4337 type and provide a smart account address. The fallback to the original address ensures backward compatibility.


280-280: Excellent fix for ERC4337 address simulation.

This change addresses the core issue mentioned in the PR title by ensuring that ERC4337 wallets use the smart account address for simulation instead of the EOA address. The implementation is clean and leverages the helper function appropriately.

packages/thirdweb/src/engine/server-wallet.test.ts (3)

2-2: LGTM! Appropriate imports for the new ERC20 test functionality.

The new imports support the comprehensive ERC20 test case that validates the ERC4337 address resolution fix.

Also applies to: 12-14


53-53: Verify if test skip is intentional.

The test is marked as skipped. Please confirm this is intentional and not accidentally left in.


224-224: LGTM! Better test naming for clarity.

The rename to "basic session key tx" helps differentiate it from the more comprehensive ERC20 test case.

Copy link
Contributor

github-actions bot commented Jul 10, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 63.22 KB (+0.04% 🔺) 1.3 s (+0.04% 🔺) 214 ms (+189.77% 🔺) 1.5 s
thirdweb (cjs) 353.64 KB (+0.11% 🔺) 7.1 s (+0.11% 🔺) 682 ms (+11.79% 🔺) 7.8 s
thirdweb (minimal + tree-shaking) 5.7 KB (0%) 114 ms (0%) 122 ms (+2301.19% 🔺) 236 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 54 ms (+3440.27% 🔺) 64 ms
thirdweb/react (minimal + tree-shaking) 19.59 KB (0%) 392 ms (0%) 99 ms (+624.75% 🔺) 490 ms

Copy link

codecov bot commented Jul 10, 2025

Codecov Report

Attention: Patch coverage is 0% with 10 lines in your changes missing coverage. Please review.

Project coverage is 56.48%. Comparing base (bd395a3) to head (2fe3072).
Report is 4 commits behind head on main.

Files with missing lines Patch % Lines
packages/thirdweb/src/engine/server-wallet.ts 0.00% 10 Missing ⚠️

❌ Your patch status has failed because the patch coverage (0.00%) is below the target coverage (80.00%). You can increase the patch coverage or adjust the target coverage.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #7581      +/-   ##
==========================================
- Coverage   56.50%   56.48%   -0.02%     
==========================================
  Files         906      906              
  Lines       58047    58064      +17     
  Branches     4227     4229       +2     
==========================================
+ Hits        32797    32799       +2     
- Misses      25140    25156      +16     
+ Partials      110      109       -1     
Flag Coverage Δ
packages 56.48% <0.00%> (-0.02%) ⬇️
Files with missing lines Coverage Δ
packages/thirdweb/src/engine/server-wallet.ts 3.67% <0.00%> (-0.13%) ⬇️

... and 4 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@joaquim-verges
Copy link
Member

@d4mr little changeset?

@joaquim-verges joaquim-verges merged commit f3234c3 into main Jul 10, 2025
23 of 24 checks passed
@joaquim-verges joaquim-verges deleted the pb/fix-server-wallet-address-for-simulation branch July 10, 2025 18:55
@joaquim-verges joaquim-verges mentioned this pull request Jul 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
packages SDK Involves changes to the thirdweb SDK
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants