Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #446

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages/starknet-snap": "3.0.0",
"packages/wallet-ui": "1.25.0",
"packages/get-starknet": "1.3.0"
"packages/starknet-snap": "3.1.0",
"packages/wallet-ui": "1.26.0",
"packages/get-starknet": "1.4.0"
}
7 changes: 7 additions & 0 deletions packages/get-starknet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.4.0](https://github.com/Consensys/starknet-snap/compare/get-starknet-v1.3.0...get-starknet-v1.4.0) (2024-12-18)


### Features

* event handling in get-starknet ([#413](https://github.com/Consensys/starknet-snap/issues/413)) ([009e8d4](https://github.com/Consensys/starknet-snap/commit/009e8d4f4bd549007e36545cecb9efd21becb314))

## [1.3.0](https://github.com/Consensys/starknet-snap/compare/get-starknet-v1.2.0...get-starknet-v1.3.0) (2024-10-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/get-starknet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@consensys/get-starknet",
"version": "1.3.0",
"version": "1.4.0",
"license": "(Apache-2.0 OR MIT)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
81 changes: 81 additions & 0 deletions packages/starknet-snap/CHANGELOG.md

Large diffs are not rendered by default.

19 changes: 15 additions & 4 deletions packages/starknet-snap/openrpc/starknet_snap_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "3.0.0",
"version": "3.1.0",
"title": "Starknet MetaMask Snap API",
"license": {}
},
Expand Down Expand Up @@ -1400,7 +1400,12 @@
"properties": {
"type": {
"type": "string",
"enum": ["DECLARE", "DEPLOY", "DEPLOY_ACCOUNT", "INVOKE_FUNCTION"]
"enum": [
"DECLARE",
"DEPLOY",
"DEPLOY_ACCOUNT",
"INVOKE_FUNCTION"
]
},
"payload": {
"$ref": "#/components/schemas/INVOCATION_PAYLOAD"
Expand Down Expand Up @@ -1498,12 +1503,18 @@
},
"VOYAGER_TXN_TYPE": {
"type": "string",
"enum": ["invoke", "deploy"],
"enum": [
"invoke",
"deploy"
],
"description": "The txn type of the transaction from Voyager. May not be a full list here and subject to change"
},
"VOYAGER_TXN_STATUS": {
"type": "string",
"enum": ["Accepted on L2", "Accepted on L1"],
"enum": [
"Accepted on L2",
"Accepted on L1"
],
"description": "The status of the transaction. May be unknown in case node is not aware of it"
},
"TYPED_DATA_SIGNATURE": {
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@consensys/starknet-snap",
"version": "3.0.0",
"version": "3.1.0",
"keywords": [],
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.0",
"version": "3.1.0",
"description": "Manage Starknet accounts and assets with MetaMask.",
"proposedName": "Starknet",
"repository": {
Expand Down
13 changes: 13 additions & 0 deletions packages/wallet-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.


## [1.26.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.25.0...wallet-ui-v1.26.0) (2024-12-18)


### Features

* allow users to transfer money to a .stark name ([#437](https://github.com/Consensys/starknet-snap/issues/437)) ([#449](https://github.com/Consensys/starknet-snap/issues/449)) ([c9e2c64](https://github.com/Consensys/starknet-snap/commit/c9e2c64572ce22bb111e6075fa6191dc025bc863))
* Refactor RPC `starkNet_getTransactions` and change the provider from Voyager to StarkScan ([#453](https://github.com/Consensys/starknet-snap/issues/453)) ([#457](https://github.com/Consensys/starknet-snap/issues/457)) ([#458](https://github.com/Consensys/starknet-snap/issues/458)) ([#459](https://github.com/Consensys/starknet-snap/issues/459)) ([5b72ef9](https://github.com/Consensys/starknet-snap/commit/5b72ef9f8ab55ad57dcaca25e306d3feecffcf0d))


### Bug Fixes

* Mute Wallet UI error message when user deny a request ([#460](https://github.com/Consensys/starknet-snap/issues/460)) ([8027bc2](https://github.com/Consensys/starknet-snap/commit/8027bc2ce968291b8d4724362f7d3b087610a5ec))

## [1.25.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.24.1...wallet-ui-v1.25.0) (2024-11-26)


Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallet-ui",
"version": "1.25.0",
"version": "1.26.0",
"private": true,
"homepage": "/starknet",
"license": "(Apache-2.0 OR MIT)",
Expand Down