Skip to content

Commit

Permalink
merged main, fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
lukachi committed Aug 9, 2023
2 parents a2363cf + c1a9305 commit 097a740
Show file tree
Hide file tree
Showing 20 changed files with 33 additions and 18 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- `@rarimo/client` - Identity related query methods

## [2.0.0-rc.15] - 2023-08-09
### Fixed
- `@rarimo/client` - `getProposal` return value

## [2.0.0-rc.14] - 2023-08-09
### Added
- `@rarimo/client` - `Config` extended with `chainName` and `chainIconUrl` fields

## [2.0.0-rc.13] - 2023-08-04
### Changed
- `@rarimo/zkp-gen-iden3` - generating inputs for `credentialAtomicQueryMTPV2`, `credentialAtomicQueryMTPV2OnChain`, `credentialAtomicQuerySigV2`, `credentialAtomicQuerySigV2OnChain` circuits
- `@rarimo/zkp-gen-iden3` - generating inputs for `credentialAtomicQueryMTPV2`,
`credentialAtomicQueryMTPV2OnChain`, `credentialAtomicQuerySigV2`,
`credentialAtomicQuerySigV2OnChain` circuits

## [2.0.0-rc.12] - 2023-08-04
### Changed
Expand Down Expand Up @@ -405,7 +415,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Under the hood changes
- Initiated repo with `@rarimo/provider` and `@rarimo/nft-checkout` packages

[Unreleased]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.13...HEAD
[Unreleased]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.15...HEAD
[2.0.0-rc.15]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.14...2.0.0-rc.15
[2.0.0-rc.14]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.13...2.0.0-rc.14
[2.0.0-rc.13]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.12...2.0.0-rc.13
[2.0.0-rc.12]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.11...2.0.0-rc.12
[2.0.0-rc.11]: https://github.com/rarimo/js-sdk/compare/2.0.0-rc.10...2.0.0-rc.11
Expand Down
Binary file added assets/logos/ra-dark-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logos/ra-light-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/auth-zkp-iden3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/auth-zkp-iden3",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Tools that authenticate a zero-knowledge proof and provide verifiable credentials from it.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/bridge",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Internal tools that other Rarimo packages use to bridge tokens.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/client",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "The Rarimo chain client",
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion packages/client/src/helpers/chain-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export const getChainInfo = async (

return {
chainId,
chainName: chainId?.toUpperCase() + ' Network',
chainName: config.chainName,
chainSymbolImageUrl: config.chainIconUrl,
rpc: config.rpcUrl,
rest: config.apiUrl,
stakeCurrency: currency,
Expand Down
2 changes: 2 additions & 0 deletions packages/client/src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ export type Config = {
rpcUrl: string
apiUrl: string
prefix: string
chainName: string
chainIconUrl: string
currency: {
denom: string
minDenom: string
Expand Down
2 changes: 1 addition & 1 deletion packages/identity-gen-iden3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/identity-gen-iden3",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Tools that generate distributed identities for the Iden3 protocol.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/nft-checkout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/nft-checkout",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Features of the Rarimo SDK that create cross-chain transactions based on the Rarimo protocol.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/provider",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "A common interface for access to wallets (EVM and non-EVM) in the Rarimo SDK, used by packages that provide access to wallets on specific chains such as @rarimo/providers-evm, @rarimo/providers-solana, and @rarimo/providers-near.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/providers-evm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/providers-evm",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on EVM-compatible blockchains.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/providers-near/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/providers-near",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the NEAR blockchain.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/providers-solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/providers-solana",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the Solana blockchain.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-nft-checkout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/react-nft-checkout",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "React components that you can use in your UI to create cross-chain transactions with the Rarimo protocol.",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/react-provider",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Tools to connect to wallets in React applications through the Rarimo SDK.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared-zkp-iden3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/shared-zkp-iden3",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Internal tools that other Rarimo packages use for identity functionality.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/shared",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Utility functions, types and constants shared across Rarimo packages.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/swap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/swap",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Internal tools that other Rarimo packages use to swap tokens.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/zkp-gen-iden3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/zkp-gen-iden3",
"version": "2.0.0-rc.13",
"version": "2.0.0-rc.15",
"description": "Tools that generate zero-knowledge proofs for the Iden3 protocol.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 097a740

Please sign in to comment.