Skip to content

Commit

Permalink
Fix/proof awaiting (#13)
Browse files Browse the repository at this point in the history
* rollback ipfs urls due to load speed

* fix changelog

* update connector ver requestor

* reduce proof awaiting delay time

* Update CHANGELOG.md

---------

Co-authored-by: Ihor Diachenko <[email protected]>
  • Loading branch information
lukachi and ihordiachenko authored Oct 23, 2023
1 parent 26aef08 commit 6688516
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.2] - 2023-10-23
### Fixed
- `@rarimo/rarime`:
- Reduced TSS fetching retry time


## [0.7.1] - 2023-10-23
### Fixed
- `@rarimo/rarime`:
Expand Down Expand Up @@ -82,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Implemented `@rarimo/rarime-connector` and `@rarimo/rarime` packages

[Unreleased]: https://github.com/rarimo/rarime/compare/0.7.1...HEAD
[Unreleased]: https://github.com/rarimo/rarime/compare/0.7.2...HEAD
[0.7.2]: https://github.com/rarimo/rarime/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/rarimo/rarime/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/rarimo/rarime/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/rarimo/rarime/compare/0.5.0...0.6.0
Expand Down
2 changes: 1 addition & 1 deletion packages/connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/rarime-connector",
"version": "0.7.1",
"version": "0.7.2",
"description": "Facilitates interaction between a DApp and RariMe MetaMask snap",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/connector/src/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.7.1"
"version": "0.7.2"
}
2 changes: 1 addition & 1 deletion packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "site",
"version": "0.7.1",
"version": "0.7.2",
"private": true,
"license": "(MIT-0 OR Apache-2.0)",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/rarime",
"version": "0.7.1",
"version": "0.7.2",
"description": "RariMe is a MetaMask Snap that safely holds any of your credentials and allows you to prove your identity without revealing any personal data. Powered by Rarimo Protocol and Zero-Knowledge Proof technology.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -45,7 +45,7 @@
"@metamask/snaps-jest": "0.35.2-flask.1",
"@metamask/snaps-types": "0.32.2",
"@metamask/snaps-ui": "0.32.2",
"@rarimo/rarime-connector": "0.7.1",
"@rarimo/rarime-connector": "0.7.2",
"buffer": "6.0.3",
"ethers": "5.7.2",
"intl": "1.2.5",
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": "0.7.1",
"version": "0.7.2",
"description": "Securely store and manage all of your identity credentials. Use them across chains with ZK-protected privacy guarantees.",
"proposedName": "RariMe",
"repository": {
"type": "git",
"url": "https://github.com/rarimo/rarime.git"
},
"source": {
"shasum": "/in9o+J9SJ9fNfrdDCX+EfjvwmvofIlbpcKoGH0FxBg=",
"shasum": "pq6Rs/Tv6SFrxeiZcnATCpZ91z7T98TJdhnf05IGhpw=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/src/helpers/state-v2-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const getUpdateStateDetails = async (
);
} catch (e) {
if (e instanceof FetcherError && e.response.status === 400) {
await new Promise((resolve) => setTimeout(resolve, 30_000));
await new Promise((resolve) => setTimeout(resolve, 5_000));
} else {
throw e;
}
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6271,7 +6271,7 @@ __metadata:
languageName: node
linkType: hard

"@rarimo/[email protected].1, @rarimo/rarime-connector@workspace:^, @rarimo/rarime-connector@workspace:packages/connector":
"@rarimo/[email protected].2, @rarimo/rarime-connector@workspace:^, @rarimo/rarime-connector@workspace:packages/connector":
version: 0.0.0-use.local
resolution: "@rarimo/rarime-connector@workspace:packages/connector"
dependencies:
Expand Down Expand Up @@ -6305,7 +6305,7 @@ __metadata:
"@metamask/snaps-jest": 0.35.2-flask.1
"@metamask/snaps-types": 0.32.2
"@metamask/snaps-ui": 0.32.2
"@rarimo/rarime-connector": 0.7.1
"@rarimo/rarime-connector": 0.7.2
"@typechain/ethers-v5": 11.1.1
"@types/intl": 1.2.0
"@types/uuid": 9.0.2
Expand Down

0 comments on commit 6688516

Please sign in to comment.