New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@metamask/api-specs

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metamask/api-specs - npm Package Compare versions

Comparing version

to
0.10.1

75

dist/build/multichain-openrpc.json

@@ -10,2 +10,68 @@ {

{
"name": "provider_request",
"paramStructure": "by-name",
"params": [
{
"name": "scope",
"description": "a valid `scopeObject` that has been previously authorized via `provider_authorize`",
"required": true,
"schema": {
"$ref": "#/components/schemas/Scope"
}
},
{
"name": "request",
"description": "an object containing a JSON-RPC request with `method` and `params`",
"deprecated": false,
"required": true,
"schema": {
"type": "object",
"properties": {
"method": {
"type": "string"
},
"params": true
}
}
},
{
"name": "sessionId",
"description": "[CAIP-171](https://chainagnostic.org/CAIPs/caip-171) `SessionId` referencing a known, open session",
"schema": {
"type": "string"
}
}
],
"result": {
"name": "provider_requestResult",
"schema": true
},
"examples": [
{
"name": "provider_requestExample",
"params": [
{
"name": "scope",
"value": "eip155:1"
},
{
"name": "request",
"value": {
"method": "eth_getBalance",
"params": []
}
},
{
"name": "sessionId",
"value": "0xdeadbeef"
}
],
"result": {
"name": "provider_requestResult",
"value": "0x1"
}
}
]
},
{
"name": "provider_authorize",

@@ -239,2 +305,6 @@ "paramStructure": "by-name",

"schemas": {
"ScopeString": {
"type": "string",
"pattern": "[-a-z0-9]{3,8}(:[-_a-zA-Z0-9]{1,32})?"
},
"Scope": {

@@ -253,4 +323,3 @@ "type": "object",

"items": {
"type": "string",
"pattern": "[-a-z0-9]{3,8}(:[-_a-zA-Z0-9]{1,32})?"
"$ref": "#/components/schemas/ScopeString"
}

@@ -266,3 +335,3 @@ },

"notifications": {
"description": "notifications that the wallet must support in order to be used with this provider.",
"description": "Notifications that the wallet must support in order to be used with this provider.",
"type": "array",

@@ -269,0 +338,0 @@ "items": {

2

package.json

@@ -39,3 +39,3 @@ {

},
"version": "0.10.0"
"version": "0.10.1"
}