-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix typos across the repo (#286)
- Loading branch information
Showing
37 changed files
with
202 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,37 @@ | ||
# Axelar Amplifier | ||
|
||
The Interchain Amplifier enables developers to permissionlessly set up connections to the Axelar network. Developers gain access to Axelar's interconnected network of chains and can "amplify" their resources by paying the cost equivalent to developing only one connection. They can establish connections between new ecosystems or existing chains to add new network properties, such as improved security or better delivery and availability. | ||
The Interchain Amplifier enables developers to permissionlessly set up connections to the Axelar network. Developers | ||
gain access to Axelar's interconnected network of chains and can "amplify" their resources by paying the cost equivalent | ||
to developing only one connection. They can establish connections between new ecosystems or existing chains to add new | ||
network properties, such as improved security or better delivery and availability. | ||
|
||
### Documentation | ||
|
||
High level documentation and diagrams can be found in the [doc](doc/README.md) directory. | ||
|
||
### Contract Json Schemas | ||
Json schemas for types used in the contract apis can be generated by navigating to the `./contracts/{contract_name}` directory and running `cargo schema`. This will generate a `./contracts/{contract_name}/schema` directory containing the json schemas for types used to instantiate, execute, query etc. | ||
|
||
Json schemas for types used in the contract apis can be generated by navigating to the `./contracts/{contract_name}` | ||
directory and running `cargo schema`. This will generate a `./contracts/{contract_name}/schema` directory containing the | ||
json schemas for types used to instantiate, execute, query etc. | ||
|
||
### Development and Testing | ||
|
||
When developing contracts to integrate with amplifier, the `cw-multi-test` crate can be used to create a simulated blockchain environment, where different contracts can deployed and interacted with, and contracts can interact with each other. See the [integration-tests](integration-tests) package for examples, as well as reusable helper functions. | ||
When developing contracts to integrate with amplifier, the `cw-multi-test` crate can be used to create a simulated | ||
blockchain environment, where different contracts can be deployed and interacted with, and contracts can interact with | ||
each other. See the [integration-tests](integration-tests) package for examples, as well as reusable helper functions. | ||
|
||
### Versioning | ||
|
||
The semver for new releases is calculated automatically based on the commit messages and the folders where changes were made. The configuration for each piece of software released (e.g ampd, gateway...) can be seen in the release.yaml file. You can perform a dry-run using the release action to be sure that the next version is what you intend it to be. The basic rules are as follows: | ||
- a commit with a message that does not include any associated tag (e.g major-contracts) for release will be considered a patch release | ||
- a commit with a message with minor tag e.g `feat(minor-ampd):...` will be considered a minor release, and the same logic applies to major releases | ||
- if no changes are detected in the watched directories, the release will not bump the version. For example, if since last release for the gateway contract no changes were made in the `contracts/gateway` or `packages/` directory. A new release will not bump the version. | ||
The semver for new releases is calculated automatically based on the commit messages and the folders where changes were | ||
made. The configuration for each piece of software released (e.g. ampd, gateway...) can be seen in the release.yaml | ||
file. You can perform a dry-run using the release action to be sure that the next version is what you intend it to be. | ||
The basic rules are as follows: | ||
|
||
- a commit with a message that does not include any associated tag (e.g. major-contracts) for release will be considered | ||
a patch release | ||
- a commit with a message with minor tag e.g. `feat(minor-ampd):...` will be considered a minor release, and the same | ||
logic applies to major releases | ||
- if no changes are detected in the watched directories, the release will not bump the version. For example, if since | ||
last release for the gateway contract no changes were made in the `contracts/gateway` or `packages/` directory. A new | ||
release will not bump the version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Summary | ||
|
||
[Overview](./overview.md) | ||
[Overview](overview.md) | ||
|
||
# Contracts | ||
|
||
- [Service Registry](./contracts/service_registry.md) | ||
- [Connection Router](./contracts/connection_router.md) | ||
- [Multisig](./contracts/multisig.md) | ||
- [Gateway](./contracts/gateway.md) | ||
- [Aggregate Verifier](./contracts/aggregate_verifier.md) | ||
- [Voting Verifier](./contracts/voting_verifier.md) | ||
- [Multisig Prover](./contracts/multisig_prover.md) | ||
- [Rewards](./contracts/rewards.md) | ||
- [Service Registry](contracts/service_registry.md) | ||
- [Connection Router](contracts/connection_router.md) | ||
- [Multisig](contracts/multisig.md) | ||
- [Gateway](contracts/gateway.md) | ||
- [Aggregate Verifier](contracts/aggregate_verifier.md) | ||
- [Voting Verifier](contracts/voting_verifier.md) | ||
- [Multisig Prover](contracts/multisig_prover.md) | ||
- [Rewards](contracts/rewards.md) | ||
|
||
# Contributing | ||
|
||
- [Documentation](./contributing/documentation.md) | ||
- [Documentation](contributing/documentation.md) |
Oops, something went wrong.