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

1.2.1 #13

Merged
merged 2 commits into from
Sep 18, 2023
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tenderly/metamask-snap-transaction-preview",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"description": "A MetaMask Snap with transaction preview powered by Tenderly Simulation API.",
"keywords": [
Expand Down
7 changes: 6 additions & 1 deletion packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.1]
### Fixed
- Update public share link

## [1.2.0]
### Fixed
- Update credentials fetching and improve error handling
Expand All @@ -27,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add Tenderly Snap implementation

[Unreleased]: https://github.com/Tenderly/tenderly-snap/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/Tenderly/tenderly-snap/compare/v1.2.1...HEAD
[1.2.1]: https://github.com/Tenderly/tenderly-snap/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/Tenderly/tenderly-snap/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/Tenderly/tenderly-snap/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/Tenderly/tenderly-snap/compare/v0.1.3...v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tenderly/metamask-snap",
"version": "1.2.0",
"version": "1.2.1",
"description": "Preview transactions before sending them on-chain to get valuable insights, avoid failed transactions, and save funds. Get human-readable information on transferred assets with corresponding dollar values for ERC-20 tokens and NFTs.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "1.2.0",
"version": "1.2.1",
"description": "Preview transactions before sending them on-chain to get valuable insights, avoid failed transactions, and save funds. Get human-readable information on transferred assets with corresponding dollar values for ERC-20 tokens and NFTs.",
"proposedName": "Tenderly TX Preview",
"repository": {
"type": "git",
"url": "https://github.com/tenderly/tenderly-snap.git"
},
"source": {
"shasum": "11m/lifD0DOGLpzWKkBtNVoSxOdkeAk2bVwZ9m76cQw=",
"shasum": "vNrNCKPLLktsGjVi1vgs3YKLy4zdPJZ4yMueXNGvWTA=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ enum CustomRequestMethod {

const TenderlyApi = 'https://api.tenderly.co/api';

const TenderlySnapVersion = '1.2.0';
const TenderlySnapVersion = '1.2.1';

export { CustomRequestMethod, TenderlyApi, TenderlySnapVersion };
Loading