Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2025
1 parent d57cfde commit 32ac114
Show file tree
Hide file tree
Showing 23 changed files with 199 additions and 153 deletions.
5 changes: 0 additions & 5 deletions .changeset/clean-chicken-hide.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/empty-hounds-reply.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/forty-parrots-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-vans-leave.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/little-moles-notice.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/lucky-poems-approve.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/modern-ads-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-ravens-rule.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/sharp-poets-call.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/silent-parrots-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-mayflies-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-toys-remember.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/soft-kings-cheat.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/soft-spoons-decide.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/twenty-tools-clap.md

This file was deleted.

76 changes: 76 additions & 0 deletions apps/nodejs/extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# @poktscan/extension

## 0.1.0

### Minor Changes

- 4da636b: # Extension

- Created runWithNetworks function to handle the logic of running requests with custom rpcs and the default network.
- Added code to handle the following pocket network transactions:
- Stake Node
- Unstake Node
- Unjail Node
- Stake App
- Change Param
- DAO Transfer
- Upgrade
- Updated account selectable buttons on Connection Request to emphasize that those are clickable buttons.
- Added Add recipient to contacts when a send transaction is sent but the recipient is not in the contacts list.
- Added close button to retry snackbars when title and content are provided.
- Updated get public key request to open unlock vault modal if the vault is locked.
- Added GetAllParams, GetApp and GetNode RTK queries.
- Updated RecipientAutocomplete to accept public keys and to be able to select current selected account as a recipient.
- Updated Summary to be able to pass a component as a label.

# Vault

- Added queryApp to Pocket Network protocol service.
- Added Upgrade transaction to Pocket Network protocol service.
- Added getAllParamsByHeight to Pocket Network protocol service.
- Updated build transaction message of DAO Transfer to pass the correct amount.
- Updated queryNode of Pocket Network protocol service to return null if the node does not exist.

- fc8c6ad: Concatenate the public and private key for Pocket Network wallets derived from a seed phrase.
- f87fbbb: Adds support for the new Cosmos protocol. Also adds support for configurations that allow notices and feature disabling.
- 8ccfae2: Adds support for Sign Personal Messages, Adds support for Sign Transaction. Adds a new validateTransaction message.
- 15f1f71: Updates Pre-Release workflow name
- f4446e4: # Extension

- The UI was replaced with a new one.
- Added Activities that will have the transactions made with the extensions and the pending mints.
- Added option to create account as child of HD Seed from Create New Account modal.
- Removed Blocked Sites in Site Connections.
- Added Selected Network Price at the bottom of Selected Account view.
- Added functionality to Seeds to be able to use them with all protocols.

# Vault

- Added CRUD functionality to manage recovery phrases.
- Updated addHDWalletAccount method of VaultTeller and createHDWalletAccount method of Protocol Services to only create
an account from an HD Seed and be able to pass a name for the account.

- 15ef995: - Accounts - Create from private key - Create from recovery seeds - Retrieve balance - Send transactions (Tokens only)

Missing functionality:

- Sign Personal Data
- Final Fee retrieval calculation (not yet implemented, see: https://github.com/pokt-network/poktroll/issues/794)

### Patch Changes

- 8543de8: Updates the pre-release workflow to be explicitly called by the version packages workflow.
- 5985ffb: Fixed issue with prices of assets due to changes of the api
- 3f7c2ea: # Extension

- Fixed bug caused by RTK Query that was causing to not reflect the balance of the wallet was loading when changing the
network.
- Fixed issue to prevent make several requests to the price api when loading the UI at the first time.
- Changed logo for new one.
- Added option to add new accounts on connection request.

- 88c2b38: Upgrades webpack and comosjs libraries
- 6f985db: Added scripts to generate the zipped files for the chromium and firefox builds. Enchanced the CI support changesets and to automatically create the release (with assets) when the PR is merged.
- 87ce3bf: \* Fixed reduce without initial value.
- Fixed typo "Enabled" in Security Settings when initializing vault.
- Updated private key input type to password in import account.
2 changes: 1 addition & 1 deletion apps/nodejs/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poktscan/extension",
"version": "0.0.6",
"version": "0.1.0",
"description": "Soothe Vault: browser web extension app for Firefox and Chromium based browsers to manage EVM and Pocket based wallets",
"main": "build/lavamoat/build.js",
"scripts": {
Expand Down
11 changes: 11 additions & 0 deletions packages/nodejs/tsconfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @poktscan/tsconfig

## 0.1.0

### Minor Changes

- 15ef995: - Accounts - Create from private key - Create from recovery seeds - Retrieve balance - Send transactions (Tokens only)

Missing functionality:

- Sign Personal Data
- Final Fee retrieval calculation (not yet implemented, see: https://github.com/pokt-network/poktroll/issues/794)

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nodejs/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poktscan/tsconfig",
"version": "0.0.1",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"files": [
Expand Down
37 changes: 37 additions & 0 deletions packages/nodejs/vault-specs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# @poktscan/vault-specs

## 0.1.0

### Minor Changes

- f965d2d: \* Introduces the new RecoveryPhrase objects that are stored within the vault

- Updates the "importRecoveryPhrase" so that it only adds a new Phrase to the vault without creating any accounts.
- Updates the addHDWallet functionality to expect a recoveryPhraseId
- Adds a new listRecoveryPhrase method
- Adds a new set of permissions for "seed" objects.

One key different is that operations involving HDWallet use the recoveryPhraseID instead of the actual recovery phrase. For instance, addHDWalletAccount now expects the recoveryPhraseId and it automatically takes care of creating the master key account if needed.

- f87fbbb: Adds support for the new Cosmos protocol. Also adds support for configurations that allow notices and feature disabling.
- 8ccfae2: Adds support for Sign Personal Messages, Adds support for Sign Transaction. Adds a new validateTransaction message.
- 15ef995: - Accounts - Create from private key - Create from recovery seeds - Retrieve balance - Send transactions (Tokens only)

Missing functionality:

- Sign Personal Data
- Final Fee retrieval calculation (not yet implemented, see: https://github.com/pokt-network/poktroll/issues/794)

### Patch Changes

- 88c2b38: Upgrades webpack and comosjs libraries
- Updated dependencies [4da636b]
- Updated dependencies [fc8c6ad]
- Updated dependencies [f965d2d]
- Updated dependencies [f87fbbb]
- Updated dependencies [67ef1e0]
- Updated dependencies [8ccfae2]
- Updated dependencies [88c2b38]
- Updated dependencies [f4446e4]
- Updated dependencies [15ef995]
- @poktscan/vault@0.1.0
2 changes: 1 addition & 1 deletion packages/nodejs/vault-specs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poktscan/vault-specs",
"version": "0.0.1",
"version": "0.1.0",
"description": "Automated Specs for the Universal Crypto Wallet Manager",
"repository": "[email protected]:pokt-scan/soothe-vault.git",
"author": "Julio Henriquez <[email protected]>",
Expand Down
71 changes: 71 additions & 0 deletions packages/nodejs/vault/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# @poktscan/vault

## 0.1.0

### Minor Changes

- fc8c6ad: Concatenate the public and private key for Pocket Network wallets derived from a seed phrase.
- f965d2d: \* Introduces the new RecoveryPhrase objects that are stored within the vault

- Updates the "importRecoveryPhrase" so that it only adds a new Phrase to the vault without creating any accounts.
- Updates the addHDWallet functionality to expect a recoveryPhraseId
- Adds a new listRecoveryPhrase method
- Adds a new set of permissions for "seed" objects.

One key different is that operations involving HDWallet use the recoveryPhraseID instead of the actual recovery phrase. For instance, addHDWalletAccount now expects the recoveryPhraseId and it automatically takes care of creating the master key account if needed.

- f87fbbb: Adds support for the new Cosmos protocol. Also adds support for configurations that allow notices and feature disabling.
- 67ef1e0: \* Uses the gas price (on EVM networks) when unable to fetch a suggested gas or priority fee. This enables support for all EVMs. Officially, we're adding Polygon, Avalance C, Arbitrum One, Gnosis, Binance Smart Chain, Fantom and Optimism.
- 8ccfae2: Adds support for Sign Personal Messages, Adds support for Sign Transaction. Adds a new validateTransaction message.
- f4446e4: # Extension

- The UI was replaced with a new one.
- Added Activities that will have the transactions made with the extensions and the pending mints.
- Added option to create account as child of HD Seed from Create New Account modal.
- Removed Blocked Sites in Site Connections.
- Added Selected Network Price at the bottom of Selected Account view.
- Added functionality to Seeds to be able to use them with all protocols.

# Vault

- Added CRUD functionality to manage recovery phrases.
- Updated addHDWalletAccount method of VaultTeller and createHDWalletAccount method of Protocol Services to only create
an account from an HD Seed and be able to pass a name for the account.

- 15ef995: - Accounts - Create from private key - Create from recovery seeds - Retrieve balance - Send transactions (Tokens only)

Missing functionality:

- Sign Personal Data
- Final Fee retrieval calculation (not yet implemented, see: https://github.com/pokt-network/poktroll/issues/794)

### Patch Changes

- 4da636b: # Extension

- Created runWithNetworks function to handle the logic of running requests with custom rpcs and the default network.
- Added code to handle the following pocket network transactions:
- Stake Node
- Unstake Node
- Unjail Node
- Stake App
- Change Param
- DAO Transfer
- Upgrade
- Updated account selectable buttons on Connection Request to emphasize that those are clickable buttons.
- Added Add recipient to contacts when a send transaction is sent but the recipient is not in the contacts list.
- Added close button to retry snackbars when title and content are provided.
- Updated get public key request to open unlock vault modal if the vault is locked.
- Added GetAllParams, GetApp and GetNode RTK queries.
- Updated RecipientAutocomplete to accept public keys and to be able to select current selected account as a recipient.
- Updated Summary to be able to pass a component as a label.

# Vault

- Added queryApp to Pocket Network protocol service.
- Added Upgrade transaction to Pocket Network protocol service.
- Added getAllParamsByHeight to Pocket Network protocol service.
- Updated build transaction message of DAO Transfer to pass the correct amount.
- Updated queryNode of Pocket Network protocol service to return null if the node does not exist.

- 88c2b38: Upgrades webpack and comosjs libraries
2 changes: 1 addition & 1 deletion packages/nodejs/vault/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poktscan/vault",
"version": "0.0.1",
"version": "0.1.0",
"description": "Universal Crypto Wallet Manager",
"repository": "[email protected]/pokt-scan/soothe-vault.git",
"author": "Julio Henriquez <[email protected]>",
Expand Down

0 comments on commit 32ac114

Please sign in to comment.