Skip to content

Commit b3d39b3

Browse files
authored
Fixed execution-apis spec version to specific commit + added API Reference docs to README (#222)
* Added API Reference docs to README * Fixed execution-apis spec version to specific commit
1 parent 7d03485 commit b3d39b3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# MetaMask API Specs
22

33
API Playground: https://metamask.github.io/api-playground/api-documentation
4+
API Reference Docs: https://docs.metamask.io/wallet/reference/json-rpc-api/
45

56
Latest build: https://metamask.github.io/api-specs/latest/openrpc.json
67

merge-openrpc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const yaml = require("js-yaml");
66
const MetaMaskOpenRPC = yaml.load(fs.readFileSync(__dirname + "/openrpc.yaml", "utf8"));
77

88
const getFilteredExecutionAPIs = () => {
9-
return fetch("https://raw.githubusercontent.com/ethereum/execution-apis/assembled-spec/refs-openrpc.json")
9+
return fetch("https://raw.githubusercontent.com/ethereum/execution-apis/59e6a6f9947859e8bb41bc63b248aa026b0781bd/refs-openrpc.json")
1010
.then(async (res) => {
1111
return filterExecutionAPIs(await res.json());
1212
});

0 commit comments

Comments
 (0)