Skip to content
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: 0 additions & 5 deletions .changeset/clean-tools-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-mails-divide.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/mean-pants-beam.md

This file was deleted.

8 changes: 8 additions & 0 deletions apps/wagmi-demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# wagmi-inapp

## 0.0.31

### Patch Changes

- Updated dependencies [[`e26d81c`](https://github.com/thirdweb-dev/js/commit/e26d81ce1d92e96de2ae23b5b53f5278c9ec772f), [`d0bbbfd`](https://github.com/thirdweb-dev/js/commit/d0bbbfd39d2c55554e8fe9c7d2d25d0fc645eeaf), [`a54c1ab`](https://github.com/thirdweb-dev/js/commit/a54c1aba350bf1672b2c3fc1ffc702cf2e36bb49)]:
- thirdweb@5.112.0
- @thirdweb-dev/wagmi-adapter@0.2.186

## 0.0.30

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/wagmi-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wagmi-inapp",
"private": true,
"version": "0.0.30",
"version": "0.0.31",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
7 changes: 7 additions & 0 deletions packages/nebula/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @thirdweb-dev/nebula

## 0.2.89

### Patch Changes

- Updated dependencies [[`e26d81c`](https://github.com/thirdweb-dev/js/commit/e26d81ce1d92e96de2ae23b5b53f5278c9ec772f), [`d0bbbfd`](https://github.com/thirdweb-dev/js/commit/d0bbbfd39d2c55554e8fe9c7d2d25d0fc645eeaf), [`a54c1ab`](https://github.com/thirdweb-dev/js/commit/a54c1aba350bf1672b2c3fc1ffc702cf2e36bb49)]:
- thirdweb@5.112.0

## 0.2.88

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nebula/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@
"type": "module",
"types": "./dist/types/exports/thirdweb.d.ts",
"typings": "./dist/types/exports/thirdweb.d.ts",
"version": "0.2.88"
"version": "0.2.89"
}
29 changes: 29 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# thirdweb

## 5.112.0

### Minor Changes

- [#8403](https://github.com/thirdweb-dev/js/pull/8403) [`d0bbbfd`](https://github.com/thirdweb-dev/js/commit/d0bbbfd39d2c55554e8fe9c7d2d25d0fc645eeaf) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Add all connected wallets in all onConnect callbacks

### Patch Changes

- [#8402](https://github.com/thirdweb-dev/js/pull/8402) [`e26d81c`](https://github.com/thirdweb-dev/js/commit/e26d81ce1d92e96de2ae23b5b53f5278c9ec772f) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Update useAuthToken() to find the auth token for any connected wallet instead of just the active one

- [#8395](https://github.com/thirdweb-dev/js/pull/8395) [`a54c1ab`](https://github.com/thirdweb-dev/js/commit/a54c1aba350bf1672b2c3fc1ffc702cf2e36bb49) Thanks [@MananTank](https://github.com/MananTank)! - Add `verify` parameter to `Bridge.Webhook.parse` function to validate the payload

Comment on lines +13 to +14
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Clarify “verify parameter” vs options object.

The bullet says “Add verify parameter,” but the example passes an options object as the 5th argument. Either reword to “verify options parameter” or show the param name/shape to avoid ambiguity (e.g., list available fields like receiverAddress).

🤖 Prompt for AI Agents
In packages/thirdweb/CHANGELOG.md around lines 13 to 14, the entry “Add `verify`
parameter to `Bridge.Webhook.parse` function” is ambiguous because the example
uses an options object; update the bullet to either read “Add `verify` options
parameter to `Bridge.Webhook.parse`” or expand the entry to include the
parameter name and shape (e.g., `verify: { receiverAddress?: string, ... }`) and
list the available fields (such as receiverAddress) so readers know it’s an
options object and what keys it accepts.

### Example

```ts
import { Bridge } from "thirdweb";

const payload = await Bridge.Webhook.parse(
body,
headers,
process.env.WEBHOOK_SECRET,
tolerance,
{
// throw an error if the `payload` doesn't have this receiver address set
receiverAddress: "0x1234567890123456789012345678901234567890",
},
);
```

## 5.111.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -430,5 +430,5 @@
}
},
"typings": "./dist/types/exports/thirdweb.d.ts",
"version": "5.111.10"
"version": "5.112.0"
}
2 changes: 2 additions & 0 deletions packages/wagmi-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @thirdweb-dev/wagmi-adapter

## 0.2.186

## 0.2.185

## 0.2.184
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@
"type": "module",
"types": "./dist/types/exports/thirdweb.d.ts",
"typings": "./dist/types/exports/thirdweb.d.ts",
"version": "0.2.185"
"version": "0.2.186"
}
Loading