# wasm-utils Collection of WASM utilities used in Parity and WASM contract devepment ## Symbols optimizer (wasm-opt) ``` cargo run --release --bin wasm-opt -- ``` This will optimize WASM symbols tree to leave only those elements that are used by contract `call` function entry. ## Gas counter (wasm-gas) For development puposes, raw WASM contract can be injected with gas counters (the same way as it done by Parity runtime when running contracts) ``` cargo run --release --bin wasm-gas --