Cargo Features

[dependencies]
sylvia = { version = "1.3.5", default-features = false, features = ["mt", "stargate", "iterator", "staking", "cosmwasm_1_1", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "cosmwasm_2_1", "cosmwasm_2_2"] }
default = staking

The staking feature is set by default whenever sylvia is added without default-features = false somewhere in the dependency tree.

mt

Enables anyhow and cw-multi-test, mt of sylvia-derive

Affects sylvia::multitest

stargate

Enables stargate of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

stargate enables stargate-dependent messages and queries, like raw protobuf messages as well as ibc-related functionality

iterator

Enables iterator of cosmwasm-std

cosmwasm-std:

iterator allows us to iterate over all DB items in a given range optional as some merkle stores (like tries) don't support this given Ethereum 1.0, 2.0, Substrate, and other major projects use Tries we keep this optional, to allow possible future integration (or different Cosmos Backends)

staking default

Enables staking of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

staking exposes bindings to a required staking moudle in the runtime, via new CosmosMsg types, and new QueryRequest types. This should only be enabled on contracts that require these types, so other contracts can be used on systems with eg. PoA consensus

cosmwasm_1_1 cosmwasm_1_2?

Enables cosmwasm_1_1 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

This feature makes BankQuery::Supply available for the contract to call, but requires the host blockchain to run CosmWasm 1.1.0 or higher.

cosmwasm_1_2 cosmwasm_1_3? = cosmwasm_1_1

Enables cosmwasm_1_2 of cosmwasm-std, optional cw-multi-test, and sylvia-derive

cosmwasm-std:

This feature makes GovMsg::VoteWeighted available for the contract to call, but requires the host blockchain to run CosmWasm 1.2.0 or higher.

cosmwasm_1_3 cosmwasm_1_4? = cosmwasm_1_2

Enables cosmwasm_1_3 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

This feature makes BankQuery::DenomMetadata available for the contract to call, but requires the host blockchain to run CosmWasm 1.3.0 or higher.

cosmwasm_1_4 cosmwasm_2_0? = cosmwasm_1_3

Enables cosmwasm_1_4 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

Together with the iterator feature this enables additional imports for more efficient iteration over DB keys or values. It also makes DistributionQuery::{DelegationRewards, DelegationTotalRewards, DelegatorValidators} available for the contract to call. It requires the host blockchain to run CosmWasm 1.4.0 or higher.

cosmwasm_2_0 cosmwasm_2_1? = cosmwasm_1_4

Enables cosmwasm_2_0 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

This enables functionality that is only available on 2.0 chains. It adds CosmosMsg::Any, replacing CosmosMsg::Stargate. It also adds QueryRequest::Grpc.

cosmwasm_2_1 cosmwasm_2_2? = cosmwasm_2_0

Enables cosmwasm_2_1 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

This enables functionality that is only available on 2.1 chains.
It adds verification and key recovery for the secp256r1 elliptic curve.

cosmwasm_2_2 = cosmwasm_2_1

Enables cosmwasm_2_2 of cosmwasm-std and optional cw-multi-test

cosmwasm-std:

This enables functionality that is only available on 2.2 chains. It adds IbcMsg::PayPacketFee and IbcMsg::PayPacketFeeAsync.