Skip to content

[SDK] Expose getAuthToken from inApp and ecosystem wallets #7683

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

Merged

Conversation

joaquim-verges
Copy link
Member

@joaquim-verges joaquim-verges commented Jul 22, 2025


PR-Codex overview

This PR focuses on enhancing wallet functionality by introducing getAuthToken methods for InAppWallet and EcosystemWallet, updating type definitions, and refining wallet creation functions to return the new types.

Detailed summary

  • Added getAuthToken method to InAppWallet and EcosystemWallet.
  • Updated return types of inAppWallet and ecosystemWallet functions to InAppWallet and EcosystemWallet, respectively.
  • Refined imports in various files for better type handling.
  • Fixed test cases to align with the new changes.

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

Summary by CodeRabbit

  • New Features

    • Improved wallet support by ensuring both in-app and ecosystem wallets now provide an authentication token retrieval method.
  • Bug Fixes

    • Corrected test descriptions, string formatting, and response handling in wallet gateway tests for improved accuracy and consistency.
  • Chores

    • Updated internal type definitions for more precise wallet interfaces.
    • Added documentation for a patch update related to authentication token exposure.

Copy link

vercel bot commented Jul 22, 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 23, 2025 1:15am
nebula ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2025 1:15am
thirdweb_playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2025 1:15am
thirdweb-www ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2025 1:15am
wallet-ui ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2025 1:15am

Copy link

changeset-bot bot commented Jul 22, 2025

🦋 Changeset detected

Latest commit: 2a2a680

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
Contributor

coderabbitai bot commented Jul 22, 2025

## Walkthrough

This update introduces new TypeScript types for in-app and ecosystem wallets, explicitly adding a `getAuthToken` method to their interfaces. Function signatures in related modules are updated to use these refined types. Minor corrections are applied to test cases, and a changeset metadata file is added to document the patch.

## Changes

| File(s)                                                                                     | Change Summary                                                                                      |
|--------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
| .changeset/brown-ends-strive.md                                                            | Added a changeset file documenting a patch update for exposing `getAuthToken` in wallet types.      |
| packages/thirdweb/src/wallets/in-app/core/wallet/types.ts                                  | Introduced `InAppWallet` and `EcosystemWallet` types, both with a `getAuthToken` method.            |
| packages/thirdweb/src/wallets/in-app/native/ecosystem.ts                                   | Updated return type and type assertions to use `EcosystemWallet` instead of generic `Wallet`.       |
| packages/thirdweb/src/wallets/in-app/native/in-app.ts                                      | Updated return type and type assertions to use `InAppWallet` instead of generic `Wallet`.           |
| packages/thirdweb/src/wallets/in-app/web/ecosystem.ts                                      | Updated return type and type assertions to use `EcosystemWallet` instead of generic `Wallet`.       |
| packages/thirdweb/src/wallets/in-app/web/in-app.ts                                         | Updated return type and type assertions to use `InAppWallet` instead of generic `Wallet`.           |
| packages/thirdweb/src/wallets/in-app/web/lib/in-app-gateway.test.ts                        | Refined test cases: direct `getAuthToken` calls, corrected response handling, and updated messages. |

## Sequence Diagram(s)

```mermaid
sequenceDiagram
    participant App
    participant InAppWallet
    participant EcosystemWallet

    App->>InAppWallet: Call getAuthToken()
    InAppWallet-->>App: Return string | null

    App->>EcosystemWallet: Call getAuthToken()
    EcosystemWallet-->>App: Return string | null

Estimated code review effort

2 (~15 minutes)


<!-- walkthrough_end -->

<!-- This is an auto-generated comment: resource warnings by coderabbit.ai -->

> [!WARNING]
> ## Review ran into problems
> 
> <details>
> <summary>🔥 Problems</summary>
> 
> Errors were encountered while retrieving linked issues.
> 
> <details>
> <summary>Errors (1)</summary>
> 
> * TEAM-0000: Entity not found: Issue - Could not find referenced Issue.
> 
> </details>
> 
> </details>

<!-- end of auto-generated comment: resource warnings by coderabbit.ai -->

---

<details>
<summary>📜 Recent review details</summary>

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


<details>
<summary>📥 Commits</summary>

Reviewing files that changed from the base of the PR and between 62d18b549aeb4af79da40efe6671ce19d5d719f0 and 2a2a680bc7b93bf951d02c69694801038230968d.

</details>

<details>
<summary>⛔ Files ignored due to path filters (1)</summary>

* `pnpm-lock.yaml` is excluded by `!**/pnpm-lock.yaml`

</details>

<details>
<summary>📒 Files selected for processing (7)</summary>

* `.changeset/brown-ends-strive.md` (1 hunks)
* `packages/thirdweb/src/wallets/in-app/core/wallet/types.ts` (2 hunks)
* `packages/thirdweb/src/wallets/in-app/native/ecosystem.ts` (3 hunks)
* `packages/thirdweb/src/wallets/in-app/native/in-app.ts` (3 hunks)
* `packages/thirdweb/src/wallets/in-app/web/ecosystem.ts` (3 hunks)
* `packages/thirdweb/src/wallets/in-app/web/in-app.ts` (3 hunks)
* `packages/thirdweb/src/wallets/in-app/web/lib/in-app-gateway.test.ts` (5 hunks)

</details>

<details>
<summary>🚧 Files skipped from review as they are similar to previous changes (7)</summary>

* .changeset/brown-ends-strive.md
* packages/thirdweb/src/wallets/in-app/native/in-app.ts
* packages/thirdweb/src/wallets/in-app/web/lib/in-app-gateway.test.ts
* packages/thirdweb/src/wallets/in-app/web/ecosystem.ts
* packages/thirdweb/src/wallets/in-app/web/in-app.ts
* packages/thirdweb/src/wallets/in-app/native/ecosystem.ts
* packages/thirdweb/src/wallets/in-app/core/wallet/types.ts

</details>

<details>
<summary>⏰ 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)</summary>

* GitHub Check: E2E Tests (pnpm, webpack)
* GitHub Check: Unit Tests
* GitHub Check: E2E Tests (pnpm, vite)
* GitHub Check: Size
* GitHub Check: E2E Tests (pnpm, esbuild)
* GitHub Check: Lint Packages
* GitHub Check: Build Packages
* GitHub Check: Analyze (javascript)

</details>

</details>
<!-- internal state start -->


<!-- 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 -->

<!-- internal state end -->
<!-- finishing_touch_checkbox_start -->

<details>
<summary>✨ Finishing Touches</summary>

- [ ] <!-- {"checkboxId": "7962f53c-55bc-4827-bfbf-6a18da830691"} --> 📝 Generate Docstrings

</details>

<!-- finishing_touch_checkbox_end -->
<!-- tips_start -->

---



<details>
<summary>🪧 Tips</summary>

### Chat

There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai?utm_source=oss&utm_medium=github&utm_campaign=thirdweb-dev/js&utm_content=7683):

- 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](https://www.coderabbit.ai/contact-us/support) 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](https://docs.coderabbit.ai/finishing-touches/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](https://docs.coderabbit.ai/guides/configure-coderabbit) 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](https://docs.coderabbit.ai) for detailed information on how to use CodeRabbit.
- Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback.
- Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.

</details>

<!-- tips_end -->

@github-actions github-actions bot added packages SDK Involves changes to the thirdweb SDK labels Jul 22, 2025
@joaquim-verges joaquim-verges changed the title Expose getAuthToken from inApp and ecosystem wallets [SDK] Expose getAuthToken from inApp and ecosystem wallets Jul 22, 2025
Copy link
Member Author


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.

This stack of pull requests is managed by Graphite. Learn more about stacking.

Copy link
Contributor

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 63.33 KB (0%) 1.3 s (0%) 293 ms (+147.98% 🔺) 1.6 s
thirdweb (cjs) 353.19 KB (0%) 7.1 s (0%) 955 ms (+4.59% 🔺) 8.1 s
thirdweb (minimal + tree-shaking) 5.7 KB (0%) 114 ms (0%) 99 ms (+1263.15% 🔺) 212 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 66 ms (+3101.95% 🔺) 77 ms
thirdweb/react (minimal + tree-shaking) 19.59 KB (0%) 392 ms (0%) 53 ms (+147.09% 🔺) 445 ms

@joaquim-verges joaquim-verges merged commit 08955f1 into main Jul 23, 2025
21 of 22 checks passed
@joaquim-verges joaquim-verges deleted the Expose_getAuthToken_from_inApp_and_ecosystem_wallets branch July 23, 2025 01:26
@joaquim-verges joaquim-verges mentioned this pull request Jul 22, 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.

1 participant