Skip to content

Commit

Permalink
upd texts, bump v
Browse files Browse the repository at this point in the history
  • Loading branch information
lukachi committed Aug 7, 2024
1 parent 53c8052 commit fb649da
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/connector/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/connector/src/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.2.0-rc.4"
"version": "0.2.0-rc.5"
}
2 changes: 1 addition & 1 deletion packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"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": {
"type": "git",
"url": "https://github.com/qtumproject/qtum-extension-wallet.git"
},
"source": {
"shasum": "QMxuuyHVQqSBWRr6BDJ+PfOqWVtw74B2gZEHfgTMzJg=",
"shasum": "L8f76v+SY98JK1UMejHnEh0ubIGF80pywhrdFNh5QZo=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/snap/src/helpers/ui/wallet-creation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}),
]);
}

0 comments on commit fb649da

Please sign in to comment.