Skip to content
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: md formatting #1210

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ name: Lint Markdown

on:
push:
branches: [$default-branch]
branches: [main]
pull_request:

jobs:
build:
lint-markdown:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
6 changes: 5 additions & 1 deletion main/guides/integration/chain-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,21 @@ The chain can also be accessed via JavaScript using the [`cosmjs` library](https
## Building `agd`

The `agd` command line tool can be built by running the commands as below:

```sh
git clone -b community-dev https://github.com/Agoric/agoric-sdk
cd agoric-sdk
SKIP_DOWNLOAD=false ./bin/agd build
export PATH=$PWD/bin:$PATH
```

To confirm that `agd` is in your `$PATH`, execute

```
agd version --long
```
Unlike typical cosmos-sdk chains where the daemon is a single executable file, Agoric's use of cosmos-sdk depends

Unlike typical cosmos-sdk chains where the daemon is a single executable file, Agoric's use of cosmos-sdk depends
on many components of agoric-sdk at runtime. Copying `agd` to `/usr/local/bin` or the like is unlikely to produce
a working installation. For more detail, see [#7825](https://github.com/Agoric/agoric-sdk/issues/7825).

Expand Down
2 changes: 1 addition & 1 deletion main/guides/orchestration/how-orch-works.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# How Orchestration Works

Blockchain orchestration fundamentally relies on protocols and mechanisms that enable blockchains to communicate and transact with each other securely and efficiently. The primary goals of blockchain orchestration are:

- **Interoperability:** Allowing different blockchain networks to interact and transact with each other.
Expand Down Expand Up @@ -34,4 +35,3 @@ The IBC protocol is highly modular, meaning it can be extended and adapted for v
- **Automation:** By leveraging ICA, Chain A can automate operations on Chain B, creating complex workflows that span multiple blockchains. For example, Chain A could automatically execute a smart contract on Chain B when certain conditions are met.

ICA greatly enhances the flexibility and capability of blockchain orchestration by enabling direct, programmable interactions between blockchains. This opens up a wide range of possibilities for cross-chain applications, from decentralized finance (DeFi) to supply chain management.

Loading