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

feat: hide multisig when not configured #1117

Merged
merged 2 commits into from
Apr 29, 2024
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
3 changes: 2 additions & 1 deletion FACTORY_VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | Contract name | Address | Network |
| ------- | -------------- | ----------- | ------- |
|---------| -------------- | ----------- | ------- |
| 1.19.0 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.18.1 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.18.0 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.17.0 | FactoryAddress | 0.0.2167166 | Testnet |
Expand Down
4 changes: 2 additions & 2 deletions backend/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 backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-npm-backend",
"version": "1.18.1",
"version": "1.19.0",
"description": "",
"author": "",
"license": "Apache-2.0",
Expand Down
6 changes: 3 additions & 3 deletions cli/package-lock.json

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

4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-npm-cli",
"version": "1.18.1",
"version": "1.19.0",
"description": "CLI for Hedera Stablecoin",
"main": "./build/src/index.js",
"bin": {
Expand Down Expand Up @@ -78,4 +78,4 @@
"tslib": "^2.4.1",
"typescript": "4.9.4"
}
}
}
4 changes: 2 additions & 2 deletions contracts/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 contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-npm-contracts",
"version": "1.18.1",
"version": "1.19.0",
"description": "",
"main": "./build/typechain-types/index.js",
"module": "./build/typechain-types/index.js",
Expand Down
4 changes: 2 additions & 2 deletions hashconnect/lib/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 hashconnect/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hashconnect",
"version": "1.18.1",
"version": "1.19.0",
"description": "hashconnect interoperability library",
"author": "Tyler Coté <[email protected]>, Nick Hanna <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hedera-stable-coin",
"version": "1.18.1",
"version": "1.19.0",
"description": "stablecoin studio",
"scripts": {
"install": "node install.js && npm run build:cli:full && npm run prepare",
Expand Down
8 changes: 4 additions & 4 deletions sdk/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 sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-npm-sdk",
"version": "1.18.1",
"version": "1.19.0",
"description": "stablecoin studio SDK",
"main": "./build/cjs/src/index.js",
"module": "./build/esm/src/index.js",
Expand Down
3 changes: 2 additions & 1 deletion web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ The ENV file contains the following parameters:
- **REACT_APP_FACTORIES**: This var is only required if you want to create a new stablecoin. The var must be a JSON array with a factory proxy id in Hedera format `0.0.XXXXX` per environment. Regarding this, your can find the factories proxy's contract ids depending on the Stablecoin Studio versión [here](./../FACTORY_VERSION.md).
- **REACT_APP_MIRROR_NODE**: This var is required if you want to create a new stablecoin. The var must be a unique mirror node service for each Hedera network, and this is the service which would be used when the UI starts. The service is configured by the environment and the base url properties, and, optionally, can also have an api key and a http header through which the api key is provided.
- **REACT_APP_RPC_NODE**: This var is required if you want to create a new stablecoin. The var must be a unique rpc node service for Hedera network, and this is the service which would be used when the UI starts. The service is configured using the same properties than the mirror node. You can check the available JSON-RPC relays [here](https://github.com/hashgraph/stablecoin-studio/blob/main/README.md#JSON-RPC-Relays).
- **REACT_APP_BACKEND_URL**: This var is only required if you want to enable multisignature functionality. It is the backend rest api endpoint.
- **REACT_APP_BACKEND_URL**: This variable is only required if you want to enable multisignature functionality. It corresponds to the backend REST API endpoint.
> **Important:** If **REACT_APP_BACKEND_URL** is not set, the multisignature option will not be activated and therefore will not be displayed on the web interface.
- **REACT_APP_CONSENSUS_NODES**: This var is only required if you want to enable multisignature functionality. It is a list of consensus nodes per environment. When generating a multisignature transaction the first consensus node of the environment will be added to the transaction.
- **REACT_APP_ICON**: url of the application icon to be displayed on wallets when connecting.

Expand Down
10 changes: 5 additions & 5 deletions web/package-lock.json

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

5 changes: 3 additions & 2 deletions web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-dapp",
"version": "1.18.1",
"version": "1.19.0",
"files": [
"build/"
],
Expand All @@ -9,10 +9,11 @@
"build": "react-app-rewired build",
"test": "react-app-rewired test --maxWorkers=50% --watchAll=false",
"test:watch": "react-app-rewired test --maxWorkers=50% --watchAll=true",
"test:update": "react-app-rewired test -u --maxWorkers=50% --watchAll=false",
"cleanCache": "react-app-rewired test --clearCache",
"eject": "react-app-rewired eject",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write .",
"prettier": "prettier --config .prettierrc --write . --fix",
"prettierCheck": "prettier --config .prettierrc --check",
"pre-commit": "npm run lint && npm run prettier",
"prepack": "npm run build"
Expand Down
Loading
Loading