Skip to content

Commit d803d37

Browse files
Version Packages (#6656)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e10c1e6 commit d803d37

File tree

6 files changed

+75
-35
lines changed

6 files changed

+75
-35
lines changed

.changeset/blue-geese-refuse.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/orange-suns-attack.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/thirdweb/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# thirdweb
22

3+
## 5.93.15
4+
5+
### Patch Changes
6+
7+
- [#6655](https://github.com/thirdweb-dev/js/pull/6655) [`59be4ea`](https://github.com/thirdweb-dev/js/commit/59be4ea2fbf29019fedfd91b7841e47684859b5c) Thanks [@kumaryash90](https://github.com/kumaryash90)! - Single phase functionality for erc1155
8+
9+
- [#6686](https://github.com/thirdweb-dev/js/pull/6686) [`e10c1e6`](https://github.com/thirdweb-dev/js/commit/e10c1e696e585b1a95a389cb0603238b731b815e) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Pass through desired chain when signing in with wallet for ecosystems
10+
311
## 5.93.14
412

513
### Patch Changes
@@ -148,7 +156,7 @@
148156
});
149157

150158
console.log(
151-
`To get ${buyQuote.destinationAmount} wei on destination chain, you need to pay ${buyQuote.originAmount} wei`
159+
`To get ${buyQuote.destinationAmount} wei on destination chain, you need to pay ${buyQuote.originAmount} wei`,
152160
);
153161

154162
// When ready to execute, prepare the transaction
@@ -183,7 +191,7 @@
183191
});
184192

185193
console.log(
186-
`If you send ${sellQuote.originAmount} wei, you'll receive approximately ${sellQuote.destinationAmount} wei`
194+
`If you send ${sellQuote.originAmount} wei, you'll receive approximately ${sellQuote.destinationAmount} wei`,
187195
);
188196

189197
// When ready to execute, prepare the transaction
@@ -3105,7 +3113,7 @@
31053113

31063114
const example1 = parseAbiParams(
31073115
["address", "uint256"],
3108-
["0x.....", "1200000"]
3116+
["0x.....", "1200000"],
31093117
); // result: ["0x......", 1200000n]
31103118
```
31113119

packages/thirdweb/package.json

Lines changed: 61 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.93.14",
3+
"version": "5.93.15",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"
@@ -137,26 +137,66 @@
137137
},
138138
"typesVersions": {
139139
"*": {
140-
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
141-
"auth": ["./dist/types/exports/auth.d.ts"],
142-
"chains": ["./dist/types/exports/chains.d.ts"],
143-
"contract": ["./dist/types/exports/contract.d.ts"],
144-
"deploys": ["./dist/types/exports/deploys.d.ts"],
145-
"event": ["./dist/types/exports/event.d.ts"],
146-
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
147-
"pay": ["./dist/types/exports/pay.d.ts"],
148-
"react": ["./dist/types/exports/react.d.ts"],
149-
"react-native": ["./dist/types/exports/react-native.d.ts"],
150-
"rpc": ["./dist/types/exports/rpc.d.ts"],
151-
"storage": ["./dist/types/exports/storage.d.ts"],
152-
"transaction": ["./dist/types/exports/transaction.d.ts"],
153-
"utils": ["./dist/types/exports/utils.d.ts"],
154-
"wallets": ["./dist/types/exports/wallets.d.ts"],
155-
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"],
156-
"modules": ["./dist/types/exports/modules.d.ts"],
157-
"social": ["./dist/types/exports/social.d.ts"],
158-
"ai": ["./dist/types/exports/ai.d.ts"],
159-
"bridge": ["./dist/types/exports/bridge.d.ts"]
140+
"adapters/*": [
141+
"./dist/types/exports/adapters/*.d.ts"
142+
],
143+
"auth": [
144+
"./dist/types/exports/auth.d.ts"
145+
],
146+
"chains": [
147+
"./dist/types/exports/chains.d.ts"
148+
],
149+
"contract": [
150+
"./dist/types/exports/contract.d.ts"
151+
],
152+
"deploys": [
153+
"./dist/types/exports/deploys.d.ts"
154+
],
155+
"event": [
156+
"./dist/types/exports/event.d.ts"
157+
],
158+
"extensions/*": [
159+
"./dist/types/exports/extensions/*.d.ts"
160+
],
161+
"pay": [
162+
"./dist/types/exports/pay.d.ts"
163+
],
164+
"react": [
165+
"./dist/types/exports/react.d.ts"
166+
],
167+
"react-native": [
168+
"./dist/types/exports/react-native.d.ts"
169+
],
170+
"rpc": [
171+
"./dist/types/exports/rpc.d.ts"
172+
],
173+
"storage": [
174+
"./dist/types/exports/storage.d.ts"
175+
],
176+
"transaction": [
177+
"./dist/types/exports/transaction.d.ts"
178+
],
179+
"utils": [
180+
"./dist/types/exports/utils.d.ts"
181+
],
182+
"wallets": [
183+
"./dist/types/exports/wallets.d.ts"
184+
],
185+
"wallets/*": [
186+
"./dist/types/exports/wallets/*.d.ts"
187+
],
188+
"modules": [
189+
"./dist/types/exports/modules.d.ts"
190+
],
191+
"social": [
192+
"./dist/types/exports/social.d.ts"
193+
],
194+
"ai": [
195+
"./dist/types/exports/ai.d.ts"
196+
],
197+
"bridge": [
198+
"./dist/types/exports/bridge.d.ts"
199+
]
160200
}
161201
},
162202
"browser": {

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.50
4+
35
## 0.2.49
46

57
## 0.2.48

packages/wagmi-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wagmi-adapter",
3-
"version": "0.2.49",
3+
"version": "0.2.50",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)