Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Agoric/documentation
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8c9f86373dbc380c5ad670e9c093841bef9ec402
Choose a base ref
..
head repository: Agoric/documentation
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0c83da5a1faedb75dae5494cd9479bfd8780eac0
Choose a head ref
Showing with 66 additions and 0 deletions.
  1. +66 −0 main/.vitepress/config.mjs
66 changes: 66 additions & 0 deletions main/.vitepress/config.mjs
Original file line number Diff line number Diff line change
@@ -453,6 +453,72 @@ export default defineConfig({
},
],
},
{
text: 'JavaScript Framework',
ariaLabel: 'JavaScript Framework',
link: '/guides/js-programming/',
},

{
text: 'Deployed Zoe Contracts',
ariaLabel: 'Deployed Zoe Contracts',
link: '/guides/zoe/actual-contracts/',
collapsed: true,
items: [
{
text: 'PSM Contract',
link: '/guides/zoe/actual-contracts/PSM',
},
{
text: 'PriceAuthority Object',
link: '/reference/zoe-api/price-authority',
},
],
},

{
text: 'Glossary',
ariaLabel: 'Glossary Menu',
link: '/glossary/',
},

{
text: 'Papers',
ariaLabel: 'Papers Page Link',
link: 'https://agoric.com/papers/',
},
],
},
{
text: 'Tutorials',
link: '/guides/getting-started/tutorial/',
collapsed: true,
items: [
{
text: 'dapp-agoric-basics',
link: '/guides/getting-started/tutorial-dapp-agoric-basics',
items: [
{
text: 'Takeaway 1: Sell Concert Tickets Contract Overview',
link:
'/guides/getting-started/sell-concert-tickets-contract-explainer',
},

{
text: 'Takeaway 2: Swaparoo Contract Overview',
link:
'/guides/getting-started/swaparoo-how-to-swap-assets-explainer',
},

{
text:
'Takeaway 3: Sending Invitation Payments using an Address',
link:
'/guides/getting-started/swaparoo-making-a-payment-explainer',
},
],
},

{
text: 'UI Tutorial',
link: '/guides/getting-started/ui-tutorial/',