Skip to content

Commit

Permalink
update app domain
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsemakula committed Dec 25, 2023
1 parent 8534e85 commit d39bf19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This app then intercepts the sendTransaction call, translates it to a call to th

#### Option 1: Add Mukutu Router as a custom Safe app using a wizard

- Go to [https://safe.mukutu.tech](https://safe.mukutu.tech)
- Go to [https://mukutu.davidsemakula.com](https://mukutu.davidsemakula.com)
- Select your origin chain and click "Go to Safe"
- You will be redirected to the appropriate Safe web interface
- Follow the prompts provided by the Safe web interface to access Mukutu Router for your Safe
Expand All @@ -28,7 +28,7 @@ This app then intercepts the sendTransaction call, translates it to a call to th
- Go to the Safe web interface at [https://app.safe.global](https://app.safe.global)
- Create your Safe if you don't have one already
- Go to Apps -> My custom apps -> Add custom app
- Paste the Safe app URL as https://safe.mukutu.tech
- Paste the Safe app URL as https://mukutu.davidsemakula.com
- You should see "Mukutu Router" as a new app
- Install the app and try out some cross-chain transactions on supported remote chains 🎉

Expand Down
4 changes: 3 additions & 1 deletion src/components/AppLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ export default function AppLoader() {
variant="contained"
endIcon={<ArrowForwardIcon />}
href={`https://app.safe.global/share/safe-app?appUrl=${encodeURIComponent(
window.location.hostname === 'localhost' ? window.location.origin : 'https://safe.mukutu.tech',
window.location.hostname === 'localhost'
? window.location.origin
: 'https://mukutu.davidsemakula.com',
)}&chain=${originShortName}`}
disabled={!origin || !originShortName}
>
Expand Down

0 comments on commit d39bf19

Please sign in to comment.