Skip to content

Commit

Permalink
chore: changed transaction address, added app id in script
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciosantise committed Sep 22, 2023
1 parent c2c1307 commit 6804156
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dapps/ModalEthers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android": "react-native run-android --appId com.walletconnect.modal.rnetherssample",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
Expand Down
2 changes: 1 addition & 1 deletion dapps/ModalEthers/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function App(): JSX.Element {

const amount = sanitizeHex(numberToHex(0.0001));
const transaction = {
to: '0x4B599F4a9F089cEE3ab875c96987087B25e501F3',
to: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045', // vitalik.eth
value: amount,
chainId,
};
Expand Down
2 changes: 1 addition & 1 deletion dapps/ModalUProvider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android": "react-native run-android --appId com.walletconnect.modal.rnuprovidersample",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
Expand Down
2 changes: 1 addition & 1 deletion dapps/ModalUProvider/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function App(): JSX.Element {

const transaction = {
from: address,
to: '0x4B599F4a9F089cEE3ab875c96987087B25e501F3',
to: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045', // vitalik.eth
value: amount,
chainId,
data: '0x',
Expand Down
2 changes: 1 addition & 1 deletion dapps/ModalViem/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android": "react-native run-android --appId com.walletconnect.modal.rnviemsample",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
Expand Down
2 changes: 1 addition & 1 deletion dapps/ModalViem/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function App(): JSX.Element {

const hash = await client.sendTransaction({
account: address,
to: '0x4B599F4a9F089cEE3ab875c96987087B25e501F3',
to: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045', // vitalik.eth
value: parseEther('0.001'),
});

Expand Down

0 comments on commit 6804156

Please sign in to comment.