Skip to content

Commit

Permalink
Version Packages (#4263)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jnsdls and github-actions[bot] authored Aug 24, 2024
1 parent a0aea23 commit f47aa61
Show file tree
Hide file tree
Showing 9 changed files with 143 additions and 118 deletions.
13 changes: 0 additions & 13 deletions .changeset/fifty-lobsters-draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forty-knives-reply.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-fishes-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-planes-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-badgers-drum.md

This file was deleted.

66 changes: 0 additions & 66 deletions .changeset/wicked-lemons-knock.md

This file was deleted.

12 changes: 10 additions & 2 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,16 @@
"tw-components",
"contract-ui"
],
"exclude": ["node_modules", "types", "tw-components"],
"exclude": [
"node_modules",
"types",
"tw-components"
],
"entrypoints": []
},
"browserslist": ["defaults", "unreleased versions", "not UCAndroid > 0"]
"browserslist": [
"defaults",
"unreleased versions",
"not UCAndroid > 0"
]
}
84 changes: 84 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,89 @@
# thirdweb

## 5.48.2

### Patch Changes

- [#4250](https://github.com/thirdweb-dev/js/pull/4250) [`41fbdaf`](https://github.com/thirdweb-dev/js/commit/41fbdafcf777a58883e9f2daefb6bf4f77d5ecda) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Add overload to `signMessage` to pass an account rather than a private key

```ts
import { signMessage } from "thirdweb/utils";
await signMessage({
message: "Hello, world!",
account,
});
```

- [#4267](https://github.com/thirdweb-dev/js/pull/4267) [`7a2de70`](https://github.com/thirdweb-dev/js/commit/7a2de7031077efba27b6bf74c1774a51e9151d22) Thanks [@alecananian](https://github.com/alecananian)! - Added `hideSwitchWallet` param to wallet details modal

- [#4224](https://github.com/thirdweb-dev/js/pull/4224) [`1405598`](https://github.com/thirdweb-dev/js/commit/1405598e7e51e4d415fd57f8169012823db0cedf) Thanks [@IDubuque](https://github.com/IDubuque)! - Added support for direct transfers in Pay

- [#4269](https://github.com/thirdweb-dev/js/pull/4269) [`120d61f`](https://github.com/thirdweb-dev/js/commit/120d61f41083198470b9dd4968d5914b644c6de5) Thanks [@MananTank](https://github.com/MananTank)! - Show wallet balance with upto 5 decimal places in UI components

- [#4274](https://github.com/thirdweb-dev/js/pull/4274) [`a0aea23`](https://github.com/thirdweb-dev/js/commit/a0aea23e74ffce4cd20842603efa87a5c038feb8) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Fix popup and window auth modes conflicting on firefox

- [#4244](https://github.com/thirdweb-dev/js/pull/4244) [`44e8e7b`](https://github.com/thirdweb-dev/js/commit/44e8e7bce21240156e55eec411dd461e746c3c8c) Thanks [@MananTank](https://github.com/MananTank)! - - Pay UI now selects the fiat currency based on the user's location / timezone

- Add Japanese Yen (JPY) as a supported fiat currency for thirdweb Pay
- Added option to configure the default fiat currency for the Pay UI

Examples

```tsx
<PayEmbed
client={client}
payOptions={{
buyWithFiat: {
prefillSource: {
currency: "CAD",
},
},
}}
/>
```

```tsx
<ConnectButton
client={client}
detailsModal={{
payOptions: {
buyWithFiat: {
prefillSource: {
currency: "JPY",
},
},
},
}}
/>
```

```ts
const sendTransaction = useSendTransaction({
payModal: {
buyWithFiat: {
prefillSource: {
currency: "CAD",
},
},
},
});
```

```tsx
<TransactionButton
transaction={() => someTx}
payModal={{
buyWithFiat: {
prefillSource: {
currency: "CAD",
},
},
}}
>
some tx
</TransactionButton>
```

## 5.48.1

### Patch Changes
Expand Down
66 changes: 49 additions & 17 deletions packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.48.1",
"version": "5.48.2",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down Expand Up @@ -117,22 +117,54 @@
},
"typesVersions": {
"*": {
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
"auth": ["./dist/types/exports/auth.d.ts"],
"chains": ["./dist/types/exports/chains.d.ts"],
"contract": ["./dist/types/exports/contract.d.ts"],
"deploys": ["./dist/types/exports/deploys.d.ts"],
"event": ["./dist/types/exports/event.d.ts"],
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
"pay": ["./dist/types/exports/pay.d.ts"],
"react": ["./dist/types/exports/react.d.ts"],
"react-native": ["./dist/types/exports/react-native.d.ts"],
"rpc": ["./dist/types/exports/rpc.d.ts"],
"storage": ["./dist/types/exports/storage.d.ts"],
"transaction": ["./dist/types/exports/transaction.d.ts"],
"utils": ["./dist/types/exports/utils.d.ts"],
"wallets": ["./dist/types/exports/wallets.d.ts"],
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"]
"adapters/*": [
"./dist/types/exports/adapters/*.d.ts"
],
"auth": [
"./dist/types/exports/auth.d.ts"
],
"chains": [
"./dist/types/exports/chains.d.ts"
],
"contract": [
"./dist/types/exports/contract.d.ts"
],
"deploys": [
"./dist/types/exports/deploys.d.ts"
],
"event": [
"./dist/types/exports/event.d.ts"
],
"extensions/*": [
"./dist/types/exports/extensions/*.d.ts"
],
"pay": [
"./dist/types/exports/pay.d.ts"
],
"react": [
"./dist/types/exports/react.d.ts"
],
"react-native": [
"./dist/types/exports/react-native.d.ts"
],
"rpc": [
"./dist/types/exports/rpc.d.ts"
],
"storage": [
"./dist/types/exports/storage.d.ts"
],
"transaction": [
"./dist/types/exports/transaction.d.ts"
],
"utils": [
"./dist/types/exports/utils.d.ts"
],
"wallets": [
"./dist/types/exports/wallets.d.ts"
],
"wallets/*": [
"./dist/types/exports/wallets/*.d.ts"
]
}
},
"browser": {
Expand Down

0 comments on commit f47aa61

Please sign in to comment.