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/signatures UI cli #1127

Merged
merged 4 commits into from
May 23, 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
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
Loading