Skip to content

Commit 6b328f7

Browse files
committed
Merge branch 'develop' into update/wagmi_docs
2 parents 9bb2d92 + 4bcdc19 commit 6b328f7

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@web3-onboard/capsule": "^2.0.3",
5959
"@web3-onboard/cede-store": "^2.2.0",
6060
"@web3-onboard/coinbase": "^2.2.7",
61-
"@web3-onboard/core": "^2.21.6",
61+
"@web3-onboard/core": "^2.21.7-alpha.1",
6262
"@web3-onboard/dcent": "^2.2.7",
6363
"@web3-onboard/enkrypt": "^2.0.4",
6464
"@web3-onboard/fortmatic": "^2.0.19",

docs/src/routes/docs/[...3]modules/[...5]transaction-preview/+page.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ title: Transaction Preview
1010

1111
# {$frontmatter.title}
1212

13+
:::admonition type=warning
14+
_Transaction Preview support is sunset on July 1st 2024 and will no longer work after that date_
15+
:::
16+
1317
A modular UI for previewing a single or set of unsigned Ethereum transactions.
1418

1519
<img src="{previewImg}" alt="Transaction Preview Flow image"/>

packages/core/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,9 @@ function init(options: InitOptions): OnboardAPI {
249249
appMetadata && updateAppMetadata(appMetadata)
250250

251251
if (apiKey && transactionPreview) {
252+
console.warn(
253+
'Transaction Preview support is going to be sunset on July 1st 2024 and will no longer work after that date'
254+
)
252255
const getBnSDK = async () => {
253256
const sdk = await getBlocknativeSdk()
254257
if (!sdk) return

packages/demo/src/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
particle,
297297
passport
298298
],
299-
// transactionPreview,
299+
transactionPreview,
300300
gas,
301301
wagmi,
302302
chains: [

packages/solid/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/solid",
3-
"version": "2.1.0-alpha.3",
3+
"version": "2.1.0-alpha.4",
44
"description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
55
"keywords": [
66
"Ethereum",
@@ -63,7 +63,7 @@
6363
},
6464
"dependencies": {
6565
"@web3-onboard/common": "^2.4.0-alpha.2",
66-
"@web3-onboard/core": "^2.22.0-alpha.5",
66+
"@web3-onboard/core": "^2.22.0-alpha.6",
6767
"solid-js": "^1.8.1"
6868
}
6969
}

packages/transaction-preview/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @web3-onboard/transaction-preview
22

3+
## (Deprecated) Transaction Preview support is going to be sunset on July 1st 2024 and will no longer work after that date
4+
35
## A modular UI for previewing a single or set of unsigned Ethereum transactions.
46

57
![Transaction Preview Flow](https://github.com/blocknative/web3-onboard/blob/develop/assets/transaction-preview.gif?raw=true 'Transaction Preview Flow')

packages/transaction-preview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/transaction-preview",
3-
"version": "2.1.0-alpha.2",
3+
"version": "2.1.0-alpha.3",
44
"description": "In app preview of Ethereum transactions",
55
"keywords": [
66
"Ethereum",

packages/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/vue",
3-
"version": "2.8.0-alpha.3",
3+
"version": "2.8.0-alpha.4",
44
"description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
55
"keywords": [
66
"Ethereum",
@@ -62,7 +62,7 @@
6262
"@vueuse/core": "^8.4.2",
6363
"@vueuse/rxjs": "^8.2.0",
6464
"@web3-onboard/common": "^2.4.0-alpha.2",
65-
"@web3-onboard/core": "^2.22.0-alpha.5",
65+
"@web3-onboard/core": "^2.22.0-alpha.6",
6666
"vue-demi": "^0.12.4"
6767
},
6868
"peerDependencies": {

0 commit comments

Comments
 (0)