diff --git a/package.json b/package.json index 9ddfeac8..255a72ba 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "os-locale": "3.0.0" }, "devDependencies": { - "electron": "22.0.2", + "electron": "22.0.3", "electron-builder": "23.6.0", "electron-packager": "17.1.1", "eslint-plugin-lit": "1.8.0", diff --git a/qortal-ui-crypto/package.json b/qortal-ui-crypto/package.json index 5d9362c0..8495143d 100644 --- a/qortal-ui-crypto/package.json +++ b/qortal-ui-crypto/package.json @@ -1,6 +1,6 @@ { "name": "qortal-ui-crypto", - "version": "2.2.5", + "version": "3.0.0", "description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet", "keywords": [ "QORT", diff --git a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js index e8c6a955..1478a7e7 100644 --- a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js +++ b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js @@ -849,7 +849,7 @@ class MultiWallet extends LitElement { ${translate("walletpage.wchange10")}
- ${this.renderSQB()} + ${this.selectedTransaction.type === 'DEPLOY_AT' ? html`${this.renderCAB()}` : html`${this.renderSQB()}`}

${!this.selectedTransaction.amount ? '' : html` @@ -3843,6 +3843,23 @@ class MultiWallet extends LitElement { } } + renderCAB() { + return html` + ${this.selectedTransaction.aTAddress} + + + ` + } + renderFetchText() { return html`${translate("walletpage.wchange1")}` } @@ -4897,7 +4914,12 @@ class MultiWallet extends LitElement { path="creatorAddress" > - + { + render(html`${data.item.type === 'DEPLOY_AT' ? html`${data.item.aTAddress}` : html`${data.item.recipient}`}`, root) + }} + > +