From b150638bfd40393e32633b3b84e9b15be5fa82b1 Mon Sep 17 00:00:00 2001 From: Shane Date: Fri, 18 Jun 2021 16:01:49 -0700 Subject: [PATCH 1/2] add ethereum chain to openrpc document (#71) - also reorder document so wallet_ methods are at the top --- metamask-openrpc.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/metamask-openrpc.json b/metamask-openrpc.json index d82b1e7..92384e9 100644 --- a/metamask-openrpc.json +++ b/metamask-openrpc.json @@ -8,6 +8,9 @@ { "$ref": "./methods/wallet_addEthereumChain.json" }, + { + "$ref": "./methods/wallet_switchEthereumChain.json" + }, { "$ref": "./methods/wallet_requestPermissions.json" }, @@ -15,16 +18,16 @@ "$ref": "./methods/wallet_getPermissions.json" }, { - "$ref": "./methods/eth_decrypt.json" + "$ref": "./methods/wallet_registerOnboarding.json" }, { - "$ref": "./methods/eth_getEncryptionPublicKey.json" + "$ref": "./methods/wallet_watchAsset.json" }, { - "$ref": "./methods/wallet_registerOnboarding.json" + "$ref": "./methods/eth_decrypt.json" }, { - "$ref": "./methods/wallet_watchAsset.json" + "$ref": "./methods/eth_getEncryptionPublicKey.json" }, { "$ref": "./methods/eth_accounts.json" From b25362c47dce8b95cbf9b5c6ee8fd49b044718c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Jun 2021 16:07:07 -0700 Subject: [PATCH 2/2] 0.0.29 (#72) * 0.0.29 * Update CHANGELOG.md Co-authored-by: github-actions Co-authored-by: Shane --- CHANGELOG.md | 15 ++++++++++----- package.json | 2 +- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c49d1f1..862cc7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,15 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.29] +### Added +- add ethereum chain to openrpc document ([#71](https://github.com/MetaMask/api-specs/pull/71)) + ## [0.0.28] +### Added +- feat: add wallet_switchEthereumChain ([#66](https://github.com/MetaMask/api-specs/pull/66)) + ### Changed - build(deps): bump ws from 7.4.4 to 7.5.0 ([#67](https://github.com/MetaMask/api-specs/pull/67)) ### Fixed - Fix release automation compatibility ([#69](https://github.com/MetaMask/api-specs/pull/69)) -### Added -- feat: add wallet_switchEthereumChain ([#66](https://github.com/MetaMask/api-specs/pull/66)) - -[Unreleased]: https://github.com/MetaMask/api-specs/compare/v0.0.28...HEAD -[0.0.28]: https://github.com/MetaMask/api-specs/releases/tag/v0.0.27...v0.0.28 +[Unreleased]: https://github.com/MetaMask/api-specs/compare/v0.0.29...HEAD +[0.0.29]: https://github.com/MetaMask/api-specs/compare/v0.0.28...v0.0.29 +[0.0.28]: https://github.com/MetaMask/api-specs/releases/tag/v0.0.28 diff --git a/package.json b/package.json index 2689162..30200ec 100644 --- a/package.json +++ b/package.json @@ -25,5 +25,5 @@ "node-fetch": "^2.6.1", "typescript": "^4.2.3" }, - "version": "0.0.28" + "version": "0.0.29" }