1
1
# Building WebAssembly Smart Contracts
2
2
3
- The subdirectories are various examples of compiling smart contracts.
4
- Here are some tips useful for creating your own.
3
+ The subdirectories are various examples of compiling smart contracts. Here are
4
+ some tips useful for creating your own.
5
5
6
6
## Setup
7
7
@@ -13,27 +13,29 @@ via `cargo new --lib sample`. Then add the following to `Cargo.toml`:
13
13
crate-type = ["cdylib", "rlib"]
14
14
```
15
15
16
- The ` cdylib ` is needed for the wasm target.
17
- The ` rlib ` is needed to compile artifacts for integration tests (and benchmarking).
16
+ The ` cdylib ` is needed for the wasm target. The ` rlib ` is needed to compile
17
+ artifacts for integration tests (and benchmarking).
18
18
19
19
** Note** throughout this demo I will use the name ` hackatom ` for the project.
20
- Please replace it with the real name of your crate. I intentionally didn't use ` <name> ` ,
21
- so you can cut and paste for a quick demo. Just update this when making real code.
20
+ Please replace it with the real name of your crate. I intentionally didn't use
21
+ ` <name> ` , so you can cut and paste for a quick demo. Just update this when
22
+ making real code.
22
23
23
24
## Requirements
24
25
25
26
You must support the rust target ` wasm32-unknown-unknown ` .
26
27
27
- Check which ones you currently have installed via ` rustup target list --installed ` .
28
- If wasm32 is not on that list, install using ` rustup target add wasm32-unknown-unknown `
29
-
28
+ Check which ones you currently have installed via
29
+ ` rustup target list --installed ` . If wasm32 is not on that list, install using
30
+ ` rustup target add wasm32-unknown-unknown `
30
31
31
32
## Building
32
33
33
34
Go into the subdirectory, called ` sample ` from now on:
34
35
35
- To compile the code, run ` cargo build --release --target wasm32-unknown-unknown ` .
36
- The output will be in ` target/wasm32-unknown-unknown/release/hackatom.wasm `
36
+ To compile the code, run
37
+ ` cargo build --release --target wasm32-unknown-unknown ` . The output will be in
38
+ ` target/wasm32-unknown-unknown/release/hackatom.wasm `
37
39
38
40
You probably don't want to explicitly set the target every time, so you can just
39
41
add the following to ` .cargo/config ` :
@@ -43,11 +45,14 @@ add the following to `.cargo/config`:
43
45
wasm = "build --release --target wasm32-unknown-unknown"
44
46
```
45
47
46
- And you can now just call ` cargo wasm ` to build it, and ` cargo test ` to run tests.
48
+ And you can now just call ` cargo wasm ` to build it, and ` cargo test ` to run
49
+ tests.
47
50
48
- ** Note** Using ` build.target ` seems to force tests to use that target as well, remove this or find a work-around.
51
+ ** Note** Using ` build.target ` seems to force tests to use that target as well,
52
+ remove this or find a work-around.
49
53
[ This discussion] ( https://internals.rust-lang.org/t/set-default-target-for-cargo-build-but-not-for-cargo-test/9777 )
50
- and [ closed PR] ( https://github.com/rust-lang/cargo/pull/6825 ) seem to suggest this will never be done.
54
+ and [ closed PR] ( https://github.com/rust-lang/cargo/pull/6825 ) seem to suggest
55
+ this will never be done.
51
56
52
57
## Optimizations
53
58
@@ -56,9 +61,9 @@ Here are some things to make it smaller.
56
61
57
62
### Smaller builds
58
63
59
- If you want to request the compiler to make smaller binaries,
60
- you can hit a few flags (which raise compile time significantly).
61
- Try adding this custom profile to Cargo.toml:
64
+ If you want to request the compiler to make smaller binaries, you can hit a few
65
+ flags (which raise compile time significantly). Try adding this custom profile
66
+ to Cargo.toml:
62
67
63
68
``` yaml
64
69
[profile.release]
@@ -73,19 +78,20 @@ incremental = false
73
78
overflow-checks = true
74
79
```
75
80
76
- ** IMPORTANT** it is essential that codegen-units is set to 1 for deterministic builds.
77
- Otherwise, you will have a different wasm output with each compile.
81
+ ** IMPORTANT** it is essential that codegen-units is set to 1 for deterministic
82
+ builds. Otherwise, you will have a different wasm output with each compile.
78
83
79
84
## Shrinking the output
80
85
81
86
After compiling your contract, take a look at the size of the original output:
82
- ` du -sh target/wasm32-unknown-unknown/release/hackatom.wasm ` , it is likely around 1.5 MB.
83
- Most of that is unneeded and can easily be trimmed. The first approach is to use
84
- [ ` wasm-pack ` ] ( https://github.com/rustwasm/wasm-pack ) to build it.
85
- This is designed for exporting small wasm builds and js bindings for the web, but is
86
- also the most actively maintained stack for trimmed wasm builds with rust.
87
- [ ` wasm-gc ` ] ( https://github.com/alexcrichton/wasm-gc ) , the older alternative, has
88
- been deprecated for this approach. (Note you must [ install wasm-pack first] ( https://rustwasm.github.io/wasm-pack/installer/ ) ):
87
+ ` du -sh target/wasm32-unknown-unknown/release/hackatom.wasm ` , it is likely
88
+ around 1.5 MB. Most of that is unneeded and can easily be trimmed. The first
89
+ approach is to use [ ` wasm-pack ` ] ( https://github.com/rustwasm/wasm-pack ) to build
90
+ it. This is designed for exporting small wasm builds and js bindings for the
91
+ web, but is also the most actively maintained stack for trimmed wasm builds with
92
+ rust. [ ` wasm-gc ` ] ( https://github.com/alexcrichton/wasm-gc ) , the older
93
+ alternative, has been deprecated for this approach. (Note you must
94
+ [ install wasm-pack first] ( https://rustwasm.github.io/wasm-pack/installer/ ) ):
89
95
90
96
``` sh
91
97
cargo wasm
@@ -96,10 +102,9 @@ du -h pkg/hackatom_bg.wasm
96
102
```
97
103
98
104
A bit smaller, huh? For the sample contract, this is around 64kB, but this
99
- varies a lot contract-by-contract.
100
- If you have plenty of dependencies and this is still too big,
101
- you can do a bit of investigation of where the size comes from, and maybe
102
- change your dependencies:
105
+ varies a lot contract-by-contract. If you have plenty of dependencies and this
106
+ is still too big, you can do a bit of investigation of where the size comes
107
+ from, and maybe change your dependencies:
103
108
104
109
``` sh
105
110
cargo install twiggy
@@ -118,14 +123,15 @@ wasm-nm -i contract.wasm
118
123
119
124
## Ultra-Compression
120
125
121
- You can still get a bit smaller. Note the symbol names that were used in twiggy. Well,
122
- those come from inside the wasm build. You can strip out these symbols and other debug
123
- info, that won't be usable when running anyway. For this we use ` wasm-opt ` from the
124
- [ enscripten toolchain] ( ) . This is a bunch of C++ code that needs to be compiled, and to
125
- simplify the whole process, as well as create reproduceable builds, we have created
126
- [ ` cosmwasm-opt ` ] ( https://github.com/confio/cosmwasm-opt ) ,
127
- which contains a ` Dockerfile ` that you can use to run both ` wasm-pack ` and ` wasm-opt ` .
128
- To make the build, just run the following in the project directory:
126
+ You can still get a bit smaller. Note the symbol names that were used in twiggy.
127
+ Well, those come from inside the wasm build. You can strip out these symbols and
128
+ other debug info, that won't be usable when running anyway. For this we use
129
+ ` wasm-opt ` from the [ enscripten toolchain] ( ) . This is a bunch of C++ code that
130
+ needs to be compiled, and to simplify the whole process, as well as create
131
+ reproduceable builds, we have created
132
+ [ ` cosmwasm-opt ` ] ( https://github.com/confio/cosmwasm-opt ) , which contains a
133
+ ` Dockerfile ` that you can use to run both ` wasm-pack ` and ` wasm-opt ` . To make
134
+ the build, just run the following in the project directory:
129
135
130
136
``` sh
131
137
docker run --rm -u $( id -u) :$( id -g) -v $( pwd) :/code confio/cosmwasm-opt:0.4.1
@@ -134,14 +140,15 @@ du -h contract.wasm
134
140
```
135
141
136
142
Note that this always outputs the file as ` contract.wasm ` , not with the name of
137
- the project (yes, every tool chain has a different output location).
138
- For the hackatom sample, I now get down to 52kB, an 18% improvement.
139
- This is as far as you can minimize the input, without removing actual functionality.
143
+ the project (yes, every tool chain has a different output location). For the
144
+ hackatom sample, I now get down to 52kB, an 18% improvement. This is as far as
145
+ you can minimize the input, without removing actual functionality.
140
146
141
- While we cannot trim down the wasm code anymore, we can still reduce the size a bit
142
- for loading in blockchain transactions. We [ soon plan] ( https://github.com/confio/go-cosmwasm/issues/20 )
143
- to allow gzip-ed wasm in the transactions posted to the chain, which will further
144
- reduce gas cost of the code upload. Check out this final output:
147
+ While we cannot trim down the wasm code anymore, we can still reduce the size a
148
+ bit for loading in blockchain transactions. We
149
+ [ soon plan] ( https://github.com/confio/go-cosmwasm/issues/20 ) to allow gzip-ed
150
+ wasm in the transactions posted to the chain, which will further reduce gas cost
151
+ of the code upload. Check out this final output:
145
152
146
153
``` sh
147
154
$ gzip -k contract.wasm
@@ -152,7 +159,5 @@ $ du -h contract.wasm*
152
159
153
160
And there you have it. We have gone from 1.5MB for the naive build, to 72kB with
154
161
the standard minification tooling, all the way down to 20kB with very aggressive
155
- trimming and compression. Less than 1.5% of the original size. This is indeed something
156
- you can easily fit inside a transaction.
157
-
158
-
162
+ trimming and compression. Less than 1.5% of the original size. This is indeed
163
+ something you can easily fit inside a transaction.
0 commit comments