Skip to content

Commit

Permalink
chore: remove orca-dapp from example contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Oct 4, 2024
1 parent 281713b commit 146b47b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 23 deletions.
4 changes: 0 additions & 4 deletions main/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,6 @@ export default defineConfig({
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond',
},
{
text: 'Orchestration Basics',
link: '/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics',
}
]
},
Expand Down
4 changes: 0 additions & 4 deletions main/.vitepress/themeConfig/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ export const nav = [
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond',
},
{
text: 'Orchestration Basics',
link: '/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics',
}
]
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SendAnywhere Contract Walkthrough
# "Send Anywhere" Contract Walkthrough

The "Send Anywhere" contract is designed to facilitate the transfer of assets from one chain to another using
Agoric's [Orchestration](/glossary/#orchestration) library. The contract allows a user to send assets of a specific brand
Expand All @@ -15,7 +15,7 @@ The high-level flow of the contract is:
The contract is implemented in two separate files:

1. `send-anywhere.contract.js` implements the `start` function of the contract to initialize the contract and
expose `publicFacet` and `creatorFacet`.
expose `publicFacet`.
2. `send-anywhere.flows.js` implements the `sendIt` function which performs the actual transfer of assets when a user makes an offer.

Let us walk through these files one by one.
Expand Down
16 changes: 3 additions & 13 deletions main/guides/orchestration/getting-started/contract-walkthroughs.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ This section is designed to provide detailed explanations and insights into exam

In this section, we will cover three primary contracts:

1. `Assets Transfer Contract`: A guide to `send-anywhere` contract that demonstrates a simple yet robust and secure way for cross-chain assets transfer.
2. `Swap Contract`: A comprehensive guide to the process of swapping assets between different chains using the Agoric orchestration library.
3. `Unbond Contract`: A detailed walkthrough of the unbonding and liquid staking process, highlighting the steps involved in managing cross-chain operations.
4. `Orchestration Basics Contract`: A dApp template serving as an introduction to the foundational concepts and implementation details of orchestration basics within an Agoric dApp.
1. **Assets Transfer Contract**: A guide to `send-anywhere` contract that demonstrates a simple yet robust and secure way for cross-chain assets transfer.
2. **Swap Contract**: A comprehensive guide to the process of swapping assets between different chains using the Agoric orchestration library.
3. **Unbond Contract**: A detailed walkthrough of the unbonding and liquid staking process, highlighting the steps involved in managing cross-chain operations.

Each walkthrough will include detailed explanations of the contract code, providing insights into the mechanics and best practices of smart contract development on the Agoric platform. By the end of these walkthroughs, you should have a solid understanding of how to utilize Agoric’s tools and libraries to create robust and efficient cross-chain smart contracts.

Expand Down Expand Up @@ -42,12 +41,3 @@ The Unbond Contract focuses on the process of unbonding staked assets and perfor
- Managing asynchronous operations and ensuring the completion of long-running processes.

[See Contract Overview](/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond)

## DApp Orchestration Basics

DApp Orchestration Basics walkthrough will provide an introduction to the implementation level details of orchestration within an Agoric dApp. This guide aims to:

- Explain the fundamental principles of orchestration.
- Show an end-to-end dApp using the Orchestration API

[See Contract Overview](/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics)

0 comments on commit 146b47b

Please sign in to comment.