Skip to content

Commit

Permalink
Upgrade urls (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest authored Sep 5, 2024
1 parent 18bba1b commit 0390cb7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Footer = () => {
<a href=" https://t.me/msgport" target="_blank">
<img src="/assets/icons/telegram.svg" alt="telegram" />
</a>
<a href="https://github.com/msgport" target="_blank">
<a href="https://github.com/ringecosystem/msgport" target="_blank">
<img src="/assets/icons/github.svg" alt="github" />
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/MsgportInterface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const MsgportInterface = () => {
</div>
))}
<a
href="https://github.com/msgport/msgport-demo"
href="https://github.com/ringecosystem/msgport-examples"
target="_blank"
className="w-full"
>
Expand Down
4 changes: 2 additions & 2 deletions src/data/Resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"logo" : "/images/MsgportGitHub.png" ,
"title" : "Msgport GitHub" ,
"desc" : "An open-source repo providing interfaces and tools for blockchain interoperability and communication." ,
"link" : "https://github.com/msgport"
"link" : "https://github.com/ringecosystem/msgport"
} ,
{
"logo" : "/images/MessagesExplorer.png" ,
Expand All @@ -15,7 +15,7 @@
"logo" : "/images/TechnicalDocs.png" ,
"title" : "Technical Docs" ,
"desc" : "Start building your Cross-Chain DApp with Msgport." ,
"link" : "https://docs.msgport.xyz/"
"link" : "https://msgport.ringdao.com/docs/"
} ,
{
"logo" : "/images/DeveloperAssistance.png" ,
Expand Down
4 changes: 2 additions & 2 deletions src/data/code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const menu: {
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "https://github.com/msgport/msgport/blob/main/src/user/Application.sol";
import "https://github.com/ringecosystem/msgport/blob/main/src/user/Application.sol";
contract ExampleReceiverDapp is Application {
event DappMessageRecv(uint256 fromChainId, address fromDapp, address localPort, bytes message);
Expand Down Expand Up @@ -148,7 +148,7 @@ export const menu: {
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "https://github.com/msgport/msgport/blob/main/src/interfaces/IMessagePort.sol";
import "https://github.com/ringecosystem/msgport/blob/main/src/interfaces/IMessagePort.sol";
contract ExampleSenderDapp {
event DappMessageSent(address localPort, bytes message);
Expand Down

0 comments on commit 0390cb7

Please sign in to comment.