Skip to content

Commit

Permalink
Feat/signatures UI cli (#1127)
Browse files Browse the repository at this point in the history
* feat: signatures added to web

Signed-off-by: Alberto Molina <[email protected]>

* fix: vesion 1.21.1

Signed-off-by: Alberto Molina <[email protected]>

* fix: factory version version updated

Signed-off-by: Alberto Molina <[email protected]>

* feat: multisig transaciton image in doc updated

Signed-off-by: Alberto Molina <[email protected]>

---------

Signed-off-by: Alberto Molina <[email protected]>
  • Loading branch information
AlbertoMolinaIoBuilders authored May 23, 2024
1 parent 7c9cf66 commit eabe566
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 25 deletions.
1 change: 1 addition & 0 deletions FACTORY_VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | Contract name | Address | Network |
|---------| -------------- | ----------- | ------- |
| 1.21.1 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.21.0 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.20.1 | FactoryAddress | 0.0.2167166 | Testnet |
| 1.20.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.21.0",
"version": "1.21.1",
"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.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-npm-cli",
"version": "1.21.0",
"version": "1.21.1",
"description": "CLI for Hedera Stablecoin",
"main": "./build/src/index.js",
"bin": {
Expand Down
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.21.0",
"version": "1.21.1",
"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.21.0",
"version": "1.21.1",
"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.21.0",
"version": "1.21.1",
"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.21.0",
"version": "1.21.1",
"description": "stablecoin studio SDK",
"main": "./build/cjs/src/index.js",
"module": "./build/esm/src/index.js",
Expand Down
Binary file modified web/docs/images/MultisigTransactions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/stablecoin-dapp",
"version": "1.21.0",
"version": "1.21.1",
"files": [
"build/"
],
Expand Down
4 changes: 4 additions & 0 deletions web/src/views/MultiSigTransactions/MultisigTransactions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ const MultiSigTransactions = () => {
<Th>ID</Th>
<Th>Description</Th>
<Th>Account</Th>
<Th>Signatures</Th>
<Th>Threshold</Th>
<Th>Status</Th>
<Th>
Expand Down Expand Up @@ -249,6 +250,9 @@ const MultiSigTransactions = () => {
<Td borderBottom='1px' borderColor='gray.200'>
{transaction.hedera_account_id}
</Td>
<Td borderBottom='1px' borderColor='gray.200'>
{transaction.signed_keys.length}
</Td>
<Td borderBottom='1px' borderColor='gray.200'>
{transaction.threshold}
</Td>
Expand Down

0 comments on commit eabe566

Please sign in to comment.