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

Escape the brackets in sanction and quarantine docs. #2007

Merged
merged 8 commits into from
Jun 5, 2024
28 changes: 14 additions & 14 deletions x/quarantine/spec/04_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ This event is emitted when an account opts into quarantine.

`@Type`: `/cosmos.quarantine.v1beta1.EventOptIn`

| Attribute Key | Attribute Value |
|---------------|--------------------------------------|
| to_address | {bech32 string of account opting in} |
| Attribute Key | Attribute Value |
|---------------|----------------------------------------|
| to_address | \{bech32 string of account opting in\} |

## EventOptOut

This event is emitted when an account opts out of quarantine.

`@Type`: `/cosmos.quarantine.v1beta1.EventOptOut`

| Attribute Key | Attribute Value |
|---------------|---------------------------------------|
| to_address | {bech32 string of account opting out} |
| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| to_address | \{bech32 string of account opting out\} |

## EventFundsQuarantined

Expand All @@ -35,18 +35,18 @@ The following event is also emitted.

`@Type`: `/cosmos.quarantine.v1beta1.EventFundsQuarantined`

| Attribute Key | Attribute Value |
|---------------|---------------------------------------|
| to_address | {bech32 string of intended recipient} |
| coins | {sdk.Coins of funds quarantined} |
| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| to_address | \{bech32 string of intended recipient\} |
| coins | \{sdk.Coins of funds quarantined\} |

## EventFundsReleased

This event is emitted when funds are fully accepted and sent from the quarantine funds holder to the originally intended recipient.

`@Type`: `/cosmos.quarantine.v1beta1.EventFundsReleased`

| Attribute Key | Attribute Value |
|---------------|-------------------------------|
| to_address | {bech32 string of recipient} |
| coins | {sdk.Coins of funds released} |
| Attribute Key | Attribute Value |
|---------------|---------------------------------|
| to_address | \{bech32 string of recipient\} |
| coins | \{sdk.Coins of funds released\} |
24 changes: 12 additions & 12 deletions x/sanction/spec/04_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,39 @@ This event is emitted when an account is sanctioned.

`@Type`: `/cosmos.sanction.v1beta1.EventAddressSanctioned`

| Attribute Key | Attribute Value |
|---------------|---------------------------------------|
| address | {bech32 string of sanctioned account} |
| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| address | \{bech32 string of sanctioned account\} |

## EventAddressUnsanctioned

This event is emitted when an account is unsanctioned.

`@Type`: `/cosmos.sanction.v1beta1.EventAddressUnsanctioned`

| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| address | {bech32 string of unsanctioned account} |
| Attribute Key | Attribute Value |
|---------------|-------------------------------------------|
| address | \{bech32 string of unsanctioned account\} |

## EventTempAddressSanctioned

This event is emitted when a temporary sanction is placed on an account.

`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressSanctioned`

| Attribute Key | Attribute Value |
|---------------|---------------------------------------|
| address | {bech32 string of sanctioned account} |
| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| address | \{bech32 string of sanctioned account\} |

## EventTempAddressUnsanctioned

This event is emitted when a temporary unsanction is placed on an account.

`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressUnsanctioned`

| Attribute Key | Attribute Value |
|---------------|-----------------------------------------|
| address | {bech32 string of unsanctioned account} |
| Attribute Key | Attribute Value |
|---------------|-------------------------------------------|
| address | \{bech32 string of unsanctioned account\} |

## EventParamsUpdated

Expand Down
Loading