Skip to content

Commit

Permalink
Version Packages (#5909)
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 Jan 8, 2025
1 parent c3bcf82 commit b2b5ae3
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 48 deletions.
5 changes: 0 additions & 5 deletions .changeset/pink-deers-fetch.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/popular-ravens-reflect.md

This file was deleted.

28 changes: 28 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# thirdweb

## 5.83.0

### Minor Changes

- [#5878](https://github.com/thirdweb-dev/js/pull/5878) [`70b7b5c`](https://github.com/thirdweb-dev/js/commit/70b7b5c5ffc965e4e39fa1ce768a11a2cda5465a) Thanks [@ElasticBottle](https://github.com/ElasticBottle)! - Add support for backend wallets.

This is useful is you have a backend that is connected to an that you want to have programmatic access to a wallet without managing private keys.

Here's how you'd do it:

```typescript
const wallet = inAppWallet();
const account = await wallet.connect({
strategy: "backend",
client: createThirdwebClient({
secretKey: "...",
}),
walletSecret: "...",
});
console.log("account.address", account.address);
```

Note that `walletSecret` should be generated by you and securely stored to uniquely authenticate to the given wallet.

### Patch Changes

- [#5904](https://github.com/thirdweb-dev/js/pull/5904) [`5e2eec3`](https://github.com/thirdweb-dev/js/commit/5e2eec3b178bcad0988ba7086e31514a3fb7b5d5) Thanks [@kumaryash90](https://github.com/kumaryash90)! - Fix batch fetch util for marketplace-v3

## 5.82.0

### Minor Changes
Expand Down
74 changes: 55 additions & 19 deletions packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.82.0",
"version": "5.83.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down Expand Up @@ -127,24 +127,60 @@
},
"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"],
"modules": ["./dist/types/exports/modules.d.ts"],
"social": ["./dist/types/exports/social.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"
],
"modules": [
"./dist/types/exports/modules.d.ts"
],
"social": [
"./dist/types/exports/social.d.ts"
]
}
},
"browser": {
Expand Down
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.1.6

## 0.1.5

## 0.1.4
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thirdweb-dev/wagmi-adapter",
"version": "0.1.5",
"version": "0.1.6",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down

0 comments on commit b2b5ae3

Please sign in to comment.