File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments