Skip to content

Commit 9a5a0a1

Browse files
authoredJun 6, 2024
Merge branch 'main' into tuan/formatting-enum
2 parents d907cdf + 6b06aa9 commit 9a5a0a1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎docs/docs/02-apps/01-transfer/05-events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ slug: /apps/transfer/events
2828
| fungible_token_packet | error | \{ackError\} |
2929
| fungible_token_packet | memo | \{memo\} |
3030
| denomination | trace_hash | \{hex_hash\} |
31-
| denomination | denom | \{voucherDenom\} |
31+
| denomination | denom | \{jsonDenom\} |
3232
| message | module | transfer |
3333

3434
## `OnAcknowledgePacket` callback

‎docs/versioned_docs/version-v4.6.x/01-ibc/01-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ slug: /ibc/overview
1212
Learn about IBC, its components, and IBC use cases.
1313
:::
1414

15-
## What is the Interblockchain Communication Protocol (IBC)?
15+
## What is the Inter-Blockchain Communication Protocol (IBC)?
1616

1717
This document serves as a guide for developers who want to write their own Inter-Blockchain
1818
Communication protocol (IBC) applications for custom use cases.

‎docs/versioned_docs/version-v5.4.x/01-ibc/01-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ slug: /ibc/overview
1212
Learn about IBC, its components, and IBC use cases.
1313
:::
1414

15-
## What is the Interblockchain Communication Protocol (IBC)?
15+
## What is the Inter-Blockchain Communication Protocol (IBC)?
1616

1717
This document serves as a guide for developers who want to write their own Inter-Blockchain
1818
Communication protocol (IBC) applications for custom use cases.

‎docs/versioned_docs/version-v6.3.x/01-ibc/01-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ slug: /ibc/overview
1212
Learn about IBC, its components, and IBC use cases.
1313
:::
1414

15-
## What is the Interblockchain Communication Protocol (IBC)?
15+
## What is the Inter-Blockchain Communication Protocol (IBC)?
1616

1717
This document serves as a guide for developers who want to write their own Inter-Blockchain
1818
Communication protocol (IBC) applications for custom use cases.

‎docs/versioned_docs/version-v7.5.x/01-ibc/01-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ slug: /ibc/overview
1212
Learn about IBC, its components, and IBC use cases.
1313
:::
1414

15-
## What is the Interblockchain Communication Protocol (IBC)?
15+
## What is the Inter-Blockchain Communication Protocol (IBC)?
1616

1717
This document serves as a guide for developers who want to write their own Inter-Blockchain
1818
Communication protocol (IBC) applications for custom use cases.

‎modules/apps/transfer/internal/events/events.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ func EmitDenomEvent(ctx sdk.Context, token types.Token) {
119119
ctx.EventManager().EmitEvent(
120120
sdk.NewEvent(
121121
types.EventTypeDenom,
122-
sdk.NewAttribute(types.AttributeKeyDenomHash, jsonDenom),
123-
sdk.NewAttribute(types.AttributeKeyDenom, token.Denom.String()),
122+
sdk.NewAttribute(types.AttributeKeyDenomHash, token.Denom.Hash().String()),
123+
sdk.NewAttribute(types.AttributeKeyDenom, jsonDenom),
124124
),
125125
)
126126
}

0 commit comments

Comments
 (0)