-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: broken internal links at multiple pages issue #1071 #1115
Changes from 7 commits
2d2c8e2
96f5bf2
0c72634
d2684a8
5beb84a
89e3c5a
8579805
bdfaecf
3641f96
a2109f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,8 @@ This section points at relevant reference documentation for the underlying `cosm | |
|
||
The Agoric Network currently uses `cosmos-sdk` v0.45. The general Cosmos documentation for this version can be [found here](https://docs.cosmos.network/v0.45/), including structure and`golang` documentation, and REST API documentation. | ||
|
||
Use the [v0.45.1 version of the REST API](https://v1.cosmos.network/rpc/v0.45.1) for accessing the chain. To use the "Try it out" functionality, change the Base URL to `agoric-api.polkachu.com`: | ||
|
||
|
||
| ![Alt name of image](./assets/cosmos-api.png) | | ||
|-| | ||
|
||
The chain can also be accessed via JavaScript using the [`cosmjs` library](https://github.com/cosmos/cosmjs) (and [associated tutorials](https://tutorials.cosmos.network/tutorials/7-cosmjs/1-cosmjs-intro.html)), or using [CosmosKit](https://cosmoskit.com/). | ||
The chain can also be accessed via JavaScript using the [`cosmjs` library](https://github.com/cosmos/cosmjs) (and [associated tutorials](https://tutorials.cosmos.network/tutorials/7-cosmjs/1-cosmjs-intro.html)), or using [CosmosKit](https://cosmology.zone/products/cosmos-kit). | ||
|
||
## Chain resources | ||
|
||
|
@@ -25,14 +20,6 @@ The chain can also be accessed via JavaScript using the [`cosmjs` library](https | |
- The base unit for staking is `ubld` (corresponding to `uatom` for Cosmos Hub) | ||
- The command utility of the agoric chain is `agd` (corresponding to [`simd` for the Cosmos Hub](https://docs.cosmos.network/v0.45/run-node/interact-node.html)). | ||
--- | ||
# Tools | ||
## Building `agd` | ||
|
||
The `agd` command line tool can be built as described in the Agoric [getting-started documentation](https://docs.agoric.com/guides/getting-started#build-the-cosmic-swingset-package). The linked step builds `agd`. To confirm that `agd` is in your `$PATH`, execute | ||
``` | ||
agd version --long | ||
``` | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rather than deleting this section, how about adapting info from the Installing agd box in https://docs.agoric.com/guides/agoric-cli/agd-query-tx.html ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The info there does not say much about building agd though - it is about how to use an already built There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it has 2 options: a docker container or building from a release. Maybe the thing to do is to keep this section as "Building agd" and make it mostly a pointer to https://github.com/Agoric/agoric-sdk/releases ; the docker option is probably less relevant here. |
||
# FAQ | ||
|
||
- How are transactions encoded? | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,9 @@ | |
|
||
![Building a Composable DeFi Contract](./assets/title.jpg) | ||
|
||
This is the OTC Desk contract from the ["Building a | ||
This is the OTC Desk contract from the "Building a | ||
Composable DeFi Contract" episode of Cosmos Code With | ||
Us](https://cosmos.network/series/code-with-us/building-a-composable-defi-contract). | ||
Us workshop. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rather than removing this link, I suggest pointing it to https://www.youtube.com/watch?v=e9dMkC2oFh8 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
|
||
[Watch the replay of the | ||
workshop](https://www.youtube.com/watch?v=faxrecQgEio): | ||
|
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -364,8 +364,6 @@ Every **Keyword** in **give** must have a corresponding **payment**. | |||||||
const paymentKeywordRecord = harden({ Asset: quatloosPayment }); | ||||||||
``` | ||||||||
|
||||||||
<a href="offerargs"></a> | ||||||||
|
||||||||
Comment on lines
-367
to
-368
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why remove this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can bring it back - does it serve any purpose? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, preserving old anchors allows any external links that use it to continue working (in this case, 45035c2 removed the "OfferArgs" heading but we still want its [formerly auto-generated] "offerargs" anchor to be associated with the replacement "Offer Arguments" heading). But you're right that there's a typo.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||||||||
### Offer Arguments | ||||||||
|
||||||||
**offerArgs** is an optional CopyRecord that can be used to pass additional arguments to the | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that image was pretty handy - are you proposing to omit it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I honestly don't know whether to keep or remove it - this page does not exist anymore though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ugh. I suppose that's worth its own issue:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dckc reckon we can merge changes to the rest of the files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://docs.cosmos.network/api ?