Skip to content

Commit 073086c

Browse files
Release (#648)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Felicio Mununga <[email protected]>
1 parent c2d4183 commit 073086c

10 files changed

+14
-25
lines changed

.changeset/eleven-stingrays-act.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.changeset/nine-ligers-end.md

-5
This file was deleted.

.changeset/sharp-cheetahs-breathe.md

-5
This file was deleted.

.changeset/two-monkeys-build.md

-5
This file was deleted.

.changeset/young-dolls-sit.md

-5
This file was deleted.

apps/connector/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# connector
22

3+
## 0.0.3
4+
5+
### Patch Changes
6+
7+
- 67066de: bind `Provider` methods
8+
- 67066de: add logger
9+
- 67066de: extend default wallet setting
10+
- c2d4183: config for localhost dapps
11+
312
## 0.0.2
413

514
### Patch Changes

apps/connector/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "connector",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"license": "MPL-2.0",
55
"private": true,
66
"repository": {
@@ -65,7 +65,8 @@
6565
},
6666
"host_permissions": [
6767
"https://*/*",
68-
"*://localhost:*/*"
68+
"http://localhost/*",
69+
"https://localhost/*"
6970
],
7071
"permissions": [
7172
"storage"

apps/connector/src/contents/main.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import type { RequestArguments } from '~lib/request-arguments'
44
import type { PlasmoCSConfig } from 'plasmo'
55

66
export const config: PlasmoCSConfig = {
7-
matches: ['https://*/*', '*://localhost:*/*'],
87
world: 'MAIN',
98
run_at: 'document_start',
109
all_frames: false,

apps/connector/src/contents/provider.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import type { ProviderMessage } from '~messages/provider-message'
99
import type { PlasmoCSConfig } from 'plasmo'
1010

1111
export const config: PlasmoCSConfig = {
12-
matches: ['https://*/*', '*://localhost:*/*'],
1312
world: 'MAIN',
1413
run_at: 'document_start',
1514
all_frames: false,

apps/connector/src/contents/proxy.ts

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import type { EthersError } from 'ethers'
1010
import type { PlasmoCSConfig } from 'plasmo'
1111

1212
export const config: PlasmoCSConfig = {
13-
matches: ['https://*/*', '*://localhost:*/*'],
1413
run_at: 'document_start',
1514
}
1615

0 commit comments

Comments
 (0)