You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix for a large portion of the broken links and adding config file for the markdown link checker
* modify link checker yaml to use config file
* fix link checker yaml
* fix some more links and the path to the config file for the markdown link checker
* fix some more dead links
* tweak markdown link checker configuration and remove deprecated section from docs
* address review comments
* fix url for png
Co-authored-by: Carlos Rodriguez <[email protected]>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ The IBC module was originally released in [v0.40.0](https://github.com/cosmos/co
120
120
Please see the [Release Notes](https://github.com/cosmos/cosmos-sdk/blob/v0.40.0/RELEASE_NOTES.md).
121
121
122
122
The IBC module is also contained in the releases for [v0.41.x](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.41.0) and [v0.42.x](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.42.0).
123
-
Please see the Release Notes for [v0.41.x](https://github.com/cosmos/cosmos-sdk/blob/release/v0.41.x/RELEASE_NOTES.md) and [v0.42.x](https://github.com/cosmos/cosmos-sdk/blob/release/v0.42.x/RELEASE_NOTES.md).
123
+
Please see the Release Notes for [v0.41.x](https://github.com/cosmos/cosmos-sdk/blob/v0.41.0/RELEASE_NOTES.md) and [v0.42.x](https://github.com/cosmos/cosmos-sdk/blob/v0.42.0/RELEASE_NOTES.md).
124
124
125
125
The IBC module was removed in the commit hash [da064e13d56add466548135739c5860a9f7ed842](https://github.com/cosmos/cosmos-sdk/commit/da064e13d56add466548135739c5860a9f7ed842) on the SDK. The release for SDK v0.43.0 will be the first release without the IBC module.
> **IMPORTANT**: If you find a security issue, you can contact our team directly at
4
-
[email protected], or report it to our [bug bounty program](https://hackerone.com/tendermint) on HackerOne. *DO NOT* open a public issue on the repository.
4
+
[email protected], or report it to our [bug bounty program](https://hackerone.com/cosmos) on HackerOne. *DO NOT* open a public issue on the repository.
5
5
6
6
## Bug Bounty
7
7
8
8
As part of our [Coordinated Vulnerability Disclosure Policy](https://tendermint.com/security), we operate a
9
-
[bug bounty program](https://hackerone.com/tendermint) with Hacker One.
9
+
[bug bounty program](https://hackerone.com/cosmos) with Hacker One.
10
10
11
11
See the policy linked above for more details on submissions and rewards and read
12
12
this [blog post](https://blog.cosmos.network/bug-bounty-program-for-tendermint-cosmos-833c67693586) for the program scope.
13
13
14
14
The following is a list of examples of the kinds of bugs we're most interested
15
-
in for the IBC Golang repository. Please refer to the corresponding repositories for vulnerabilities on the [Cosmos SDK]((https://github.com/cosmos/cosmos-sdk/blob/master/SECURITY.md)) and [Tendermint](https://github.com/tendermint/tendermint/blob/master/SECURITY.md) repositories.
15
+
in for the IBC Golang repository. Please refer to the corresponding repositories for vulnerabilities on the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/blob/master/SECURITY.md) and [Tendermint](https://github.com/tendermint/tendermint/blob/master/SECURITY.md) repositories.
Copy file name to clipboardexpand all lines: docs/migrations/ibc-migration-043.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ The IBC Keeper now takes in the Upgrade Keeper. Please add the chains' Upgrade K
104
104
105
105
### UpdateClientProposal
106
106
107
-
The `UpdateClient` has been modified to take in two client-identifiers and one initial height. Please see the [documentation](../proposals.md) for more information.
107
+
The `UpdateClient` has been modified to take in two client-identifiers and one initial height. Please see the [documentation](../ibc/proposals.md) for more information.
Copy file name to clipboardexpand all lines: modules/apps/transfer/spec/01_concepts.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ order: 1
6
6
7
7
## Acknowledgements
8
8
9
-
ICS20 uses the recommended acknowledgement format as specified by [ICS 04](https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#acknowledgement-envelope).
9
+
ICS20 uses the recommended acknowledgement format as specified by [ICS 04](https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope).
10
10
11
11
A successful receive of a transfer packet will result in a Result Acknowledgement being written
12
12
with the value `[]byte(byte(1))` in the `Response` field.
Copy file name to clipboardexpand all lines: modules/apps/transfer/spec/02_state.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ order: 2
4
4
5
5
# State
6
6
7
-
The transfer IBC application module keeps state of the port to which the module is binded and the denomination trace information as outlined in [ADR 01](./../../../../../docs/architecture/adr-001-coin-source-tracing.md).
7
+
The transfer IBC application module keeps state of the port to which the module is binded and the denomination trace information as outlined in [ADR 01](./../../../../docs/architecture/adr-001-coin-source-tracing.md).
Copy file name to clipboardexpand all lines: modules/apps/transfer/spec/04_messages.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ This message is expected to fail if:
29
29
-`Sender` is empty
30
30
-`Receiver` is empty
31
31
-`TimeoutHeight` and `TimeoutTimestamp` are both zero
32
-
-`Token.Denom` is not a valid IBC denomination as per [ADR 001 - Coin Source Tracing](./../../../../../docs/architecture/adr-001-coin-source-tracing.md).
32
+
-`Token.Denom` is not a valid IBC denomination as per [ADR 001 - Coin Source Tracing](./../../../../docs/architecture/adr-001-coin-source-tracing.md).
33
33
34
34
This message will send a fungible token to the counterparty chain represented
35
35
by the counterparty Channel End connected to the Channel End with the identifiers
Copy file name to clipboardexpand all lines: modules/apps/transfer/spec/07_params.md
+2-4
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,12 @@ The transfers enabled parameter controls send cross-chain transfer capabilities
17
17
tokens.
18
18
19
19
To prevent a single token from being transferred from the chain, set the `SendEnabled` parameter to `true` and
20
-
then set the bank module's [`SendEnabled` parameter](./../../../../bank/spec/05_params.md#sendenabled) for
21
-
the denomination to `false`.
20
+
then set the bank module's [`SendEnabled` parameter](https://github.com/cosmos/cosmos-sdk/blob/master/x/bank/spec/05_params.md#sendenabled) for the denomination to `false`.
22
21
23
22
## ReceiveEnabled
24
23
25
24
The transfers enabled parameter controls receive cross-chain transfer capabilities for all fungible
26
25
tokens.
27
26
28
27
To prevent a single token from being transferred to the chain, set the `ReceiveEnabled` parameter to `true` and
29
-
then set the bank module's [`SendEnabled` parameter](./../../../../bank/spec/05_params.md#sendenabled) for
30
-
the denomination to `false`.
28
+
then set the bank module's [`SendEnabled` parameter](https://github.com/cosmos/cosmos-sdk/blob/master/x/bank/spec/05_params.md#sendenabled) for the denomination to `false`.
Copy file name to clipboardexpand all lines: modules/apps/transfer/spec/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ parent:
11
11
12
12
This paper defines the implementation of the ICS20 protocol on the Cosmos SDK.
13
13
14
-
For the general specification please refer to the [ICS20 Specification](https://github.com/cosmos/ics/tree/master/spec/ics-020-fungible-token-transfer).
14
+
For the general specification please refer to the [ICS20 Specification](https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer).
0 commit comments