diff --git a/packages/connector/package.json b/packages/connector/package.json index c703ebe..0e46fea 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.2", + "version": "0.2.0-rc.3", "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 5003dc1..a04fe3a 100644 --- a/packages/connector/src/version.json +++ b/packages/connector/src/version.json @@ -1,3 +1,3 @@ { - "version": "0.2.0-rc.2" + "version": "0.2.0-rc.3" } diff --git a/packages/snap/package.json b/packages/snap/package.json index e7ac55a..502cec1 100644 --- a/packages/snap/package.json +++ b/packages/snap/package.json @@ -1,6 +1,6 @@ { "name": "@qtumproject/qtum-wallet", - "version": "0.2.0-rc.2", + "version": "0.2.0-rc.3", "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 8c5f27f..f5413fc 100644 --- a/packages/snap/snap.manifest.json +++ b/packages/snap/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.2.0-rc.2", + "version": "0.2.0-rc.3", "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": "128oCcSTBKFp+RfvIbaiJkh2oyEXUvJhSWBvdkuLVWQ=", + "shasum": "pMnk5DSwjbCqKHfF6EiUh/oKLE21A1XJEA0JTlJGnxM=", "location": { "npm": { "filePath": "dist/bundle.js", diff --git a/packages/snap/src/helpers/ui/homepage.ts b/packages/snap/src/helpers/ui/homepage.ts index ec211c5..a91da9f 100644 --- a/packages/snap/src/helpers/ui/homepage.ts +++ b/packages/snap/src/helpers/ui/homepage.ts @@ -31,12 +31,12 @@ export const onHomePage: OnHomePageHandler = async () => { ? [ divider(), - text('Your qtum address:'), + text('Your Qtum address:'), copyable({ value: (await getQtumAddress()) || 'Not created yet', }), - text('Your hex representation of Qtum address:'), + text('Your Qtum address in hexadecimal format:'), copyable({ value: wallet.address, }),