File tree 2 files changed +7
-0
lines changed
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
21
21
` MockApi::addr_make ` from ` DepsMut ` . ([ #2383 ] )
22
22
- cosmwasm-std: Added ` ibc2_port ` to ` ContractInfoResponse ` . ([ #2390 ] , [ #2403 ] )
23
23
- cosmwasm-vm: Added ` ibc2_packet_receive ` entrypoint ([ #2403 ] )
24
+ - cosmwasm-vm: Add IBC Callbacks entrypoints to the ` Entrypoints ` enum.
25
+ ([ #2438 ] )
24
26
25
27
## Changed
26
28
@@ -92,6 +94,7 @@ and this project adheres to
92
94
[ #2399 ] : https://github.com/CosmWasm/cosmwasm/pull/2399
93
95
[ #2403 ] : https://github.com/CosmWasm/cosmwasm/pull/2403
94
96
[ #2432 ] : https://github.com/CosmWasm/cosmwasm/pull/2432
97
+ [ #2438 ] : https://github.com/CosmWasm/cosmwasm/pull/2438
95
98
96
99
## [ 2.2.0] - 2024-12-17
97
100
Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ pub enum Entrypoint {
33
33
IbcPacketAck ,
34
34
#[ strum( serialize = "ibc_packet_timeout" ) ]
35
35
IbcPacketTimeout ,
36
+ #[ strum( serialize = "ibc_source_callback" ) ]
37
+ IbcSourceCallback ,
38
+ #[ strum( serialize = "ibc_destination_callback" ) ]
39
+ IbcDestinationCallback ,
36
40
#[ strum( serialize = "ibc2_packet_receive" ) ]
37
41
Ibc2PacketReceive ,
38
42
}
You can’t perform that action at this time.
0 commit comments