Skip to content

Commit d665ac9

Browse files
authored
Merge pull request #2438 from CosmWasm/co/ibc-callbacks-entrypoint-enum
Add IBC Callbacks entrypoints to enum
2 parents 75e1301 + 76a267a commit d665ac9

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ and this project adheres to
2121
`MockApi::addr_make` from `DepsMut`. ([#2383])
2222
- cosmwasm-std: Added `ibc2_port` to `ContractInfoResponse`. ([#2390], [#2403])
2323
- cosmwasm-vm: Added `ibc2_packet_receive` entrypoint ([#2403])
24+
- cosmwasm-vm: Add IBC Callbacks entrypoints to the `Entrypoints` enum.
25+
([#2438])
2426

2527
## Changed
2628

@@ -92,6 +94,7 @@ and this project adheres to
9294
[#2399]: https://github.com/CosmWasm/cosmwasm/pull/2399
9395
[#2403]: https://github.com/CosmWasm/cosmwasm/pull/2403
9496
[#2432]: https://github.com/CosmWasm/cosmwasm/pull/2432
97+
[#2438]: https://github.com/CosmWasm/cosmwasm/pull/2438
9598

9699
## [2.2.0] - 2024-12-17
97100

packages/vm/src/static_analysis.rs

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ pub enum Entrypoint {
3333
IbcPacketAck,
3434
#[strum(serialize = "ibc_packet_timeout")]
3535
IbcPacketTimeout,
36+
#[strum(serialize = "ibc_source_callback")]
37+
IbcSourceCallback,
38+
#[strum(serialize = "ibc_destination_callback")]
39+
IbcDestinationCallback,
3640
#[strum(serialize = "ibc2_packet_receive")]
3741
Ibc2PacketReceive,
3842
}

0 commit comments

Comments
 (0)