diff --git a/packages/connector/package.json b/packages/connector/package.json index 2f82614..d6a6015 100644 --- a/packages/connector/package.json +++ b/packages/connector/package.json @@ -1,6 +1,6 @@ { "name": "@qtumproject/qtum-wallet-connector", - "version": "0.2.0-rc.4", + "version": "0.2.0-rc.5", "description": "A Provider to be used in ethers.js to interact with Qtum's wallet", "repository": { "type": "git", diff --git a/packages/connector/src/version.json b/packages/connector/src/version.json index d6802eb..48250f9 100644 --- a/packages/connector/src/version.json +++ b/packages/connector/src/version.json @@ -1,3 +1,3 @@ { - "version": "0.2.0-rc.4" + "version": "0.2.0-rc.5" } diff --git a/packages/snap/package.json b/packages/snap/package.json index 2b655da..ec40472 100644 --- a/packages/snap/package.json +++ b/packages/snap/package.json @@ -1,6 +1,6 @@ { "name": "@qtumproject/qtum-wallet", - "version": "0.2.0-rc.4", + "version": "0.2.0-rc.5", "description": "Qtum Wallet is a MetaMask Snap that plays the role of the RPC proxy that accepts requests to the MetaMask and forwards them to the Qtum network with the Qtum ethers adapter.", "repository": { "type": "git", diff --git a/packages/snap/snap.manifest.json b/packages/snap/snap.manifest.json index 60b0c30..97f9041 100644 --- a/packages/snap/snap.manifest.json +++ b/packages/snap/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.2.0-rc.4", + "version": "0.2.0-rc.5", "description": "Qtum Wallet is a MetaMask Snap that plays the role of the RPC proxy that accepts requests to the MetaMask and forwards them to the Qtum network with the Qtum ethers adapter.", "proposedName": "Qtum Wallet", "repository": { @@ -7,7 +7,7 @@ "url": "https://github.com/qtumproject/qtum-extension-wallet.git" }, "source": { - "shasum": "QMxuuyHVQqSBWRr6BDJ+PfOqWVtw74B2gZEHfgTMzJg=", + "shasum": "L8f76v+SY98JK1UMejHnEh0ubIGF80pywhrdFNh5QZo=", "location": { "npm": { "filePath": "dist/bundle.js", diff --git a/packages/snap/src/helpers/ui/wallet-creation.ts b/packages/snap/src/helpers/ui/wallet-creation.ts index 86fae90..82986ea 100644 --- a/packages/snap/src/helpers/ui/wallet-creation.ts +++ b/packages/snap/src/helpers/ui/wallet-creation.ts @@ -17,14 +17,14 @@ export async function showWalletCreatedSnapDialog( heading('Your Wallet'), divider(), - text('Your eth address:'), + text('Your Qtum address:'), copyable({ - value: ethAddr, + value: qtumAddr, }), - text('Your qtum address:'), + text('Your Qtum address in hexadecimal format:'), copyable({ - value: qtumAddr, + value: ethAddr, }), ]); }