Skip to content

Commit

Permalink
chore: bump to 0.4.2 (#18)
Browse files Browse the repository at this point in the history
* rename client to provider
* update pnpm lock
  • Loading branch information
RyanKung authored Dec 11, 2023
1 parent 82b4e4d commit 971d513
Show file tree
Hide file tree
Showing 6 changed files with 127 additions and 126 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rings_extension",
"version": "0.3.6",
"version": "0.4.2",
"description": "Browser Extension of rings network",
"keywords": [
"extension",
Expand Down Expand Up @@ -56,7 +56,7 @@
"@metamask/post-message-stream": "^6.1.1",
"@metamask/providers": "^10.2.1",
"@rings/webext-template": "link:",
"@ringsnetwork/rings-node": "https://github.com/RingsNetwork/rings-node/releases/download/v0.3.5/rings-v0.3.5-wasm32-unknown-unknown.tgz",
"@ringsnetwork/rings-node": "https://github.com/RingsNetwork/rings-node/releases/download/v0.4.2/rings-v0.4.2-wasm32-unknown-unknown.tgz",
"@unocss/reset": "^0.50.6",
"buffer": "^6.0.3",
"document-ready": "^2.0.2",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions shim.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ declare module 'webext-bridge' {
},
{
address: string
clients: any[]
providers: any[]
}
>
'connect-node': ProtocolWithReturn<{ url: string }, any>
'sign-message': ProtocolWithReturn<{ auth: string }, { signed: string }>
'get-client': ProtocolWithReturn<
'get-provider': ProtocolWithReturn<
any,
{
clients: any[]
providers: any[]
currentAccount: string | undefined
}
>
Expand All @@ -39,7 +39,7 @@ declare module 'webext-bridge' {
} & Record<string, any>
>
'node-status-change': ProtocolWithReturn<Record<string, any>, any>
'destroy-client': any
'destroy-provider': any
'get-peers': ProtocolWithReturn<any, any>
getWindowInfo: ProtocolWithReturn<
any,
Expand Down
Loading

0 comments on commit 971d513

Please sign in to comment.