Skip to content

Commit

Permalink
Upped the version (#60)
Browse files Browse the repository at this point in the history
Signed-off-by: Kipkap <[email protected]>
  • Loading branch information
himalayan-dev authored Jan 17, 2024
1 parent 9c374dc commit 5df3cb2
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 19 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-metamask-snaps",
"version": "0.1.3",
"version": "0.1.4",
"description": "A collection of Hedera related Metamask snaps that expose and utilize Hedera functionality inside Metamask",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion packages/hedera-wallet-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap-monorepo",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"description": "Hedera Wallet Snap unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"homepage": "https://github.com/hashgraph/hedera-metamask-snaps#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/hedera-wallet-snap/packages/site/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TypeScript Example Snap Front-end
# Example website that integrates the snap

This project was bootstrapped with [Gatsby](https://www.gatsbyjs.com/).

Expand Down
2 changes: 1 addition & 1 deletion packages/hedera-wallet-snap/packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap-site",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"license": "Apache-2.0",
"scripts": {
Expand Down
21 changes: 21 additions & 0 deletions packages/hedera-wallet-snap/packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.1.4](https://github.com/tuum-tech/hedera-pulse/compare/v0.1.4...v0.1.4) (2024-01-17)

### :page_with_curl: Documentation

- Refer to the [Hedera Wallet Snap Wiki](https://docs.tuum.tech/hedera-wallet-snap/) for more info on how the snap works and how to integrate it into your own application.

### :rocket: Features

- [Added a new snap API to let users sign any message using their snap account](https://github.com/hashgraph/hedera-metamask-snaps/issues/31)
- [Added a new snap API to retrieve transactions history from Hedera Mirror node](https://github.com/hashgraph/hedera-metamask-snaps/issues/51)
- Added the UI for `signMessage` API to the example site
- Added the UI for `getTransactions` API to the example site
- Added `endowment:lifecycle-hooks` to the snap permissions list
- Added a snap specific method that will be run on the installation of the snap. This will show the users more info about the snap
- Added a snap specific method that will be run on the update of the snap. This will show all the new features that are part of the new release
- Modified the way errors are handled. Now, we use the metamask provided library - `providerErrors` from `@metamask/rpc-errors`

### :bug: Bug Fixes

- Fixed an issue whereby sometimes, hbars couldn't be sent on mainnet due to a network issue

## [0.1.3](https://github.com/tuum-tech/hedera-pulse/compare/v0.1.3...v0.1.3) (2024-01-05)

### :page_with_curl: Documentation
Expand Down
2 changes: 1 addition & 1 deletion packages/hedera-wallet-snap/packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap",
"version": "0.1.3",
"version": "0.1.4",
"description": "Hedera Wallet Snap unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"keywords": [
"MetaMask",
Expand Down
4 changes: 2 additions & 2 deletions packages/hedera-wallet-snap/packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "0.1.3",
"version": "0.1.4",
"description": "Hedera Wallet unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"proposedName": "Hedera Wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/hedera-metamask-snaps.git"
},
"source": {
"shasum": "XAxouAd9EJLsy8Zv/RSYV/Q+VLouoPiai4FXW8OMmOM=",
"shasum": "sRf3KctL/MKWSuBRRXWwKXlXRglHNs9fh4wop5D3BpY=",
"location": {
"npm": {
"filePath": "dist/snap.js",
Expand Down
10 changes: 0 additions & 10 deletions packages/hedera-wallet-snap/packages/snap/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,16 +218,6 @@ export const onUpdate: OnUpdateHandler = async () => {
text('New features added in this version:'),
text('🚀 Added a new API to let users sign arbitrary messages'),
text('🚀 Added a new API to let users view their transaction history'),
text('🚀 Added a new API to let users approve and delete an allowance'),
text(
'🚀 Added a new API to let users transfer both fungible and non-fungible tokens',
),
text(
'🚀 Added a new API to let users delete their account from the ledger',
),
text(
'🚀 Added a new API to let users stake and unstake HBAR to and from Hedera Network Nodes',
),
]),
},
});
Expand Down

0 comments on commit 5df3cb2

Please sign in to comment.