Skip to content

Commit c96170b

Browse files
authored
Merge pull request #1686 from polywrap/pre-0.10
chore: update CHANGELOG & VERSION
2 parents 2da67ab + 7426d12 commit c96170b

6 files changed

Lines changed: 200 additions & 103 deletions

File tree

CHANGELOG.md

Lines changed: 188 additions & 91 deletions
Large diffs are not rendered by default.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0-pre.14
1+
0.10.0

packages/js/client-config-builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@polywrap/concurrent-plugin-js": "~0.10.0-pre",
2727
"@polywrap/core-js": "0.10.0-pre.14",
2828
"@polywrap/ethereum-provider-js-v1": "npm:@polywrap/ethereum-provider-js@~0.2.4",
29-
"@polywrap/ethereum-provider-js-v2": "npm:@polywrap/ethereum-provider-js@~0.3.0",
29+
"@polywrap/ethereum-provider-js": "npm:@polywrap/ethereum-provider-js@~0.3.0",
3030
"@polywrap/file-system-plugin-js": "~0.10.0-pre",
3131
"@polywrap/http-plugin-js": "~0.10.0-pre",
3232
"@polywrap/logger-plugin-js": "0.10.0-pre.10",

packages/js/client-config-builder/src/bundles/default.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as ipfsResolver from "./embeds/async-ipfs-resolver/wrap";
55

66
import { IWrapPackage, Uri } from "@polywrap/core-js";
77
import * as EthProviderV1 from "@polywrap/ethereum-provider-js-v1";
8-
import * as EthProviderV2 from "@polywrap/ethereum-provider-js-v2";
8+
import * as EthProvider from "@polywrap/ethereum-provider-js";
99
import { httpPlugin } from "@polywrap/http-plugin-js";
1010
import { fileSystemPlugin } from "@polywrap/file-system-plugin-js";
1111
import { loggerPlugin } from "@polywrap/logger-plugin-js";
@@ -119,14 +119,14 @@ export const plugins: IDefaultPlugins = {
119119
},
120120
ethereumProviderV2: {
121121
uri: Uri.from("plugin/ethereum-provider@2.0.0"),
122-
plugin: EthProviderV2.plugin({
123-
connections: new EthProviderV2.Connections({
122+
plugin: EthProvider.plugin({
123+
connections: new EthProvider.Connections({
124124
networks: {
125-
mainnet: new EthProviderV2.Connection({
125+
mainnet: new EthProvider.Connection({
126126
provider:
127127
"https://mainnet.infura.io/v3/b00b2c2cc09c487685e9fb061256d6a6",
128128
}),
129-
goerli: new EthProviderV2.Connection({
129+
goerli: new EthProvider.Connection({
130130
provider:
131131
"https://goerli.infura.io/v3/b00b2c2cc09c487685e9fb061256d6a6",
132132
}),

scripts/patch-peer-deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from "path";
44
const packagesToPatch = [
55
"@polywrap/concurrent-plugin-js",
66
"@polywrap/ethereum-provider-js-v1",
7-
"@polywrap/ethereum-provider-js-v2",
7+
"@polywrap/ethereum-provider-js",
88
"@polywrap/file-system-plugin-js",
99
"@polywrap/http-plugin-js",
1010
"@polywrap/logger-plugin-js"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2182,7 +2182,7 @@
21822182
"@polywrap/plugin-js" "0.10.0-pre.10"
21832183
ethers "5.7.0"
21842184

2185-
"@polywrap/ethereum-provider-js-v2@npm:@polywrap/ethereum-provider-js@~0.3.0":
2185+
"@polywrap/ethereum-provider-js@npm:@polywrap/ethereum-provider-js@~0.3.0":
21862186
version "0.3.0"
21872187
resolved "https://registry.yarnpkg.com/@polywrap/ethereum-provider-js/-/ethereum-provider-js-0.3.0.tgz#65f12dc2ab7d6812dad9a28ee051deee2a98a1ed"
21882188
integrity sha512-+gMML3FNMfvz/yY+j2tZhOdxa6vgw9i/lFobrmkjkGArLRuOZhYLg/mwmK5BSrzIbng4omh6PgV0DPHgU1m/2w==
@@ -4357,9 +4357,9 @@ electron-fetch@^1.7.2:
43574357
encoding "^0.1.13"
43584358

43594359
electron-to-chromium@^1.4.284:
4360-
version "1.4.361"
4361-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.361.tgz#010ddd5e623470ab9d1bf776b009d11c3669a4e3"
4362-
integrity sha512-VocVwjPp05HUXzf3xmL0boRn5b0iyqC7amtDww84Jb1QJNPBc7F69gJyEeXRoriLBC4a5pSyckdllrXAg4mmRA==
4360+
version "1.4.362"
4361+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.362.tgz#1dfd7a076fc4785a16941f06410d0668e1a7a1aa"
4362+
integrity sha512-PYzAoScDfUcAwZfJQvr6hK2xXzLsMocj/Wuz6LpW6TZQNVv9TflBSB+UoEPuFujc478BgAxCoCFarcVPmjzsog==
43634363

43644364
elliptic@6.5.4:
43654365
version "6.5.4"

0 commit comments

Comments
 (0)