Skip to content

Commit d3b82ce

Browse files
authored
feat: bump line/lbm-sdk to 6c84a4cffa (#137)
* Bump line/lbm-sdk to 1deccf3012 * Bump line/lbm-sdk to df3df2f146 * Bump line/lbm-sdk to 3933ad15e9 * Bump line/lbm-sdk to ef335aa722 * Bump line/lbm-sdk to a7557b1d10 * Bump line/lbm-sdk to 471a4d7f25 * Bump line/lbm-sdk to 6c84a4cffa * Bump wasmvm binary to v1.1.1-0.11.1 * Lint * Lint * Fix test-localnet * Apply suggestions from code review Check the files * Update CHANGELOG.md
1 parent efd5757 commit d3b82ce

File tree

8 files changed

+140
-990
lines changed

8 files changed

+140
-990
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
4040
* (build) [\#126](https://github.com/line/lbm/pull/126) Automatically generates release note and binaries
4141
* (x/wasmd) [\#355](https://github.com/line/lbm/pull/355) chore: apply detached x/wasmd
4242
* (build) [\#130](https://github.com/line/lbm/pull/130) Add a release build for the linux/arm64, darwin/amd64, and darwin/arm64 platform
43+
* (lbm-sdk) [\#137](https://github.com/line/lbm/pull/137) Bump line/lbm-sdk to 6c84a4cffa
4344

4445
### Improvements
4546

Dockerfile

+6-7
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,18 @@ COPY ./go.sum /lbm-build/lbm/go.sum
2525
RUN go mod download
2626

2727
# See https://github.com/line/wasmvm/releases
28-
# See https://github.com/line/wasmvm/releases
29-
ADD https://github.com/line/wasmvm/releases/download/v1.0.0-0.10.0/libwasmvm_static.x86_64.a /lib/libwasmvm_static.x86_64.a
30-
ADD https://github.com/line/wasmvm/releases/download/v1.0.0-0.10.0/libwasmvm_static.aarch64.a /lib/libwasmvm_static.aarch64.a
31-
RUN sha256sum /lib/libwasmvm_static.aarch64.a | grep bc3db72ba32f34ad88ceb1d20479411bd7f50ccd6a5ca50cc8ca462a561e6189
32-
RUN sha256sum /lib/libwasmvm_static.x86_64.a | grep 352fa5de5f9dba66f0a38082541d3e63e21394fee3e577ea35e0906294c61276
28+
ADD https://github.com/line/wasmvm/releases/download/v1.1.1-0.11.1/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
29+
ADD https://github.com/line/wasmvm/releases/download/v1.1.1-0.11.1/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
30+
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep e03e401e58f72d40a08a99a81bb05123146bb1d6f68b9afbede5481b3ea460f7
31+
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 06fcd14950c5014e35cc4af39090cb7161b5594d398a7d8fb05525d991370a18
3332

34-
RUN ln -s /lib/libwasmvm_static.${ARCH}.a /usr/lib/libwasmvm_static.a
33+
RUN ln -s /lib/libwasmvm_muslc.${ARCH}.a /usr/lib/libwasmvm_muslc.a
3534

3635
# Add source files
3736
COPY . .
3837

3938
# Make install
40-
RUN BUILD_TAGS=static make install CGO_ENABLED=1 LBM_BUILD_OPTIONS="$LBM_BUILD_OPTIONS"
39+
RUN BUILD_TAGS=muslc make install CGO_ENABLED=1 LBM_BUILD_OPTIONS="$LBM_BUILD_OPTIONS"
4140

4241
# Final image
4342
FROM alpine:edge

app/app.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ import (
9393
"github.com/line/wasmd/x/wasm"
9494
wasmclient "github.com/line/wasmd/x/wasm/client"
9595
wasmkeeper "github.com/line/wasmd/x/wasm/keeper"
96-
wasmlbmtypes "github.com/line/wasmd/x/wasm/lbmtypes"
9796

9897
appparams "github.com/line/lbm/app/params"
9998

@@ -285,7 +284,7 @@ func NewLinkApp(
285284
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms,
286285
)
287286
app.BankKeeper = bankpluskeeper.NewBaseKeeper(
288-
appCodec, keys[banktypes.StoreKey], app.AccountKeeper, app.GetSubspace(banktypes.ModuleName), app.BlockedAddrs(),
287+
appCodec, keys[banktypes.StoreKey], app.AccountKeeper, app.GetSubspace(banktypes.ModuleName), app.BlockedAddrs(), true,
289288
)
290289
stakingKeeper := stakingkeeper.NewKeeper(
291290
appCodec, keys[stakingtypes.StoreKey], app.AccountKeeper, app.BankKeeper, app.GetSubspace(stakingtypes.ModuleName),
@@ -351,8 +350,6 @@ func NewLinkApp(
351350
wasmDir,
352351
wasmConfig,
353352
supportedFeatures,
354-
nil,
355-
nil,
356353
wasmOpts...,
357354
)
358355

@@ -362,7 +359,7 @@ func NewLinkApp(
362359
AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)).
363360
AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.DistrKeeper)).
364361
AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)).
365-
AddRoute(wasm.RouterKey, wasmkeeper.NewWasmProposalHandler(app.WasmKeeper, wasmlbmtypes.EnableAllProposals))
362+
AddRoute(wasm.RouterKey, wasmkeeper.NewWasmProposalHandler(app.WasmKeeper, wasm.EnableAllProposals))
366363

367364
govKeeper := govkeeper.NewKeeper(
368365
appCodec, keys[govtypes.StoreKey], app.GetSubspace(govtypes.ModuleName), app.AccountKeeper, app.BankKeeper,

app/app_test.go

+24-23
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ import (
3131
foundationmodule "github.com/line/lbm-sdk/x/foundation/module"
3232
"github.com/line/lbm-sdk/x/genutil"
3333
"github.com/line/lbm-sdk/x/gov"
34-
"github.com/line/lbm-sdk/x/ibc/applications/transfer"
35-
ibc "github.com/line/lbm-sdk/x/ibc/core"
34+
35+
// "github.com/line/lbm-sdk/x/ibc/applications/transfer"
36+
// ibc "github.com/line/lbm-sdk/x/ibc/core"
3637
"github.com/line/lbm-sdk/x/mint"
3738
"github.com/line/lbm-sdk/x/params"
3839
"github.com/line/lbm-sdk/x/slashing"
@@ -165,17 +166,17 @@ func TestRunMigrations(t *testing.T) {
165166
"slashing": slashing.AppModule{}.ConsensusVersion(),
166167
"gov": gov.AppModule{}.ConsensusVersion(),
167168
"params": params.AppModule{}.ConsensusVersion(),
168-
"ibc": ibc.AppModule{}.ConsensusVersion(),
169-
"upgrade": upgrade.AppModule{}.ConsensusVersion(),
170-
"vesting": vesting.AppModule{}.ConsensusVersion(),
171-
"feegrant": feegrantmodule.AppModule{}.ConsensusVersion(),
172-
"transfer": transfer.AppModule{}.ConsensusVersion(),
173-
"evidence": evidence.AppModule{}.ConsensusVersion(),
174-
"crisis": crisis.AppModule{}.ConsensusVersion(),
175-
"genutil": genutil.AppModule{}.ConsensusVersion(),
176-
"capability": capability.AppModule{}.ConsensusVersion(),
177-
"foundation": foundationmodule.AppModule{}.ConsensusVersion(),
178-
"token": tokenmodule.AppModule{}.ConsensusVersion(),
169+
// "ibc": ibc.AppModule{}.ConsensusVersion(),
170+
"upgrade": upgrade.AppModule{}.ConsensusVersion(),
171+
"vesting": vesting.AppModule{}.ConsensusVersion(),
172+
"feegrant": feegrantmodule.AppModule{}.ConsensusVersion(),
173+
// "transfer": transfer.AppModule{}.ConsensusVersion(),
174+
"evidence": evidence.AppModule{}.ConsensusVersion(),
175+
"crisis": crisis.AppModule{}.ConsensusVersion(),
176+
"genutil": genutil.AppModule{}.ConsensusVersion(),
177+
"capability": capability.AppModule{}.ConsensusVersion(),
178+
"foundation": foundationmodule.AppModule{}.ConsensusVersion(),
179+
"token": tokenmodule.AppModule{}.ConsensusVersion(),
179180
},
180181
)
181182
if tc.expRunErr {
@@ -221,16 +222,16 @@ func TestInitGenesisOnMigration(t *testing.T) {
221222
"slashing": slashing.AppModule{}.ConsensusVersion(),
222223
"gov": gov.AppModule{}.ConsensusVersion(),
223224
"params": params.AppModule{}.ConsensusVersion(),
224-
"ibc": ibc.AppModule{}.ConsensusVersion(),
225-
"upgrade": upgrade.AppModule{}.ConsensusVersion(),
226-
"vesting": vesting.AppModule{}.ConsensusVersion(),
227-
"transfer": transfer.AppModule{}.ConsensusVersion(),
228-
"evidence": evidence.AppModule{}.ConsensusVersion(),
229-
"crisis": crisis.AppModule{}.ConsensusVersion(),
230-
"genutil": genutil.AppModule{}.ConsensusVersion(),
231-
"capability": capability.AppModule{}.ConsensusVersion(),
232-
"foundation": foundationmodule.AppModule{}.ConsensusVersion(),
233-
"token": tokenmodule.AppModule{}.ConsensusVersion(),
225+
// "ibc": ibc.AppModule{}.ConsensusVersion(),
226+
"upgrade": upgrade.AppModule{}.ConsensusVersion(),
227+
"vesting": vesting.AppModule{}.ConsensusVersion(),
228+
// "transfer": transfer.AppModule{}.ConsensusVersion(),
229+
"evidence": evidence.AppModule{}.ConsensusVersion(),
230+
"crisis": crisis.AppModule{}.ConsensusVersion(),
231+
"genutil": genutil.AppModule{}.ConsensusVersion(),
232+
"capability": capability.AppModule{}.ConsensusVersion(),
233+
"foundation": foundationmodule.AppModule{}.ConsensusVersion(),
234+
"token": tokenmodule.AppModule{}.ConsensusVersion(),
234235
},
235236
)
236237

app/export.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ func (app *LinkApp) ExportAppStateAndValidators(
4646

4747
// prepare for fresh start at zero height
4848
// NOTE zero height genesis is a temporary feature which will be deprecated
49-
// in favor of export at a block height
49+
//
50+
// in favor of export at a block height
5051
func (app *LinkApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []string) {
5152
applyAllowedAddrs := false
5253

builders/Dockerfile.static

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ COPY ./go.sum /lbm-build/lbm/go.sum
2525
RUN go mod download
2626

2727
# See https://github.com/line/wasmvm/releases
28-
ADD https://github.com/line/wasmvm/releases/download/v1.0.0-0.10.0/libwasmvm_static.x86_64.a /lib/libwasmvm_static.x86_64.a
29-
ADD https://github.com/line/wasmvm/releases/download/v1.0.0-0.10.0/libwasmvm_static.aarch64.a /lib/libwasmvm_static.aarch64.a
30-
RUN sha256sum /lib/libwasmvm_static.aarch64.a | grep bc3db72ba32f34ad88ceb1d20479411bd7f50ccd6a5ca50cc8ca462a561e6189
31-
RUN sha256sum /lib/libwasmvm_static.x86_64.a | grep 352fa5de5f9dba66f0a38082541d3e63e21394fee3e577ea35e0906294c61276
28+
ADD https://github.com/line/wasmvm/releases/download/v1.1.1-0.11.1/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
29+
ADD https://github.com/line/wasmvm/releases/download/v1.1.1-0.11.1/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
30+
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep e03e401e58f72d40a08a99a81bb05123146bb1d6f68b9afbede5481b3ea460f7
31+
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 06fcd14950c5014e35cc4af39090cb7161b5594d398a7d8fb05525d991370a18
3232

33-
RUN ln -s /lib/libwasmvm_static.${ARCH}.a /usr/lib/libwasmvm_static.a
33+
RUN ln -s /lib/libwasmvm_muslc.${ARCH}.a /usr/lib/libwasmvm_muslc.a
3434

3535
# Add source files
3636
COPY . .
3737

3838
# Make install
39-
RUN BUILD_TAGS=static make build CGO_ENABLED=1
39+
RUN BUILD_TAGS=muslc make build CGO_ENABLED=1
4040

4141
# Final image
4242
FROM alpine:edge

go.mod

+30-32
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,22 @@ go 1.18
55
require (
66
github.com/golang/mock v1.6.0
77
github.com/gorilla/mux v1.8.0
8-
github.com/line/lbm-sdk v0.46.1-0.20230106043757-1ece23d83a0b
8+
github.com/line/lbm-sdk v0.46.1-0.20230206093133-6c84a4cffaac
99
github.com/line/ostracon v1.0.7
10-
github.com/line/wasmd v0.0.0-20230110072924-cae21ecd251c
10+
github.com/line/wasmd v0.0.0-20230209081529-e0d9c95a8af8
1111
github.com/prometheus/client_golang v1.14.0
1212
github.com/rakyll/statik v0.1.7
1313
github.com/spf13/cast v1.5.0
1414
github.com/spf13/cobra v1.6.1
15-
github.com/spf13/viper v1.14.0
15+
github.com/spf13/viper v1.15.0
1616
github.com/stretchr/testify v1.8.1
1717
github.com/tendermint/tm-db v0.6.7
1818
)
1919

2020
require (
2121
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
22-
github.com/99designs/keyring v1.1.6 // indirect
22+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
23+
github.com/99designs/keyring v1.2.1 // indirect
2324
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
2425
github.com/VictoriaMetrics/fastcache v1.12.0 // indirect
2526
github.com/Workiva/go-datastructures v1.0.53 // indirect
@@ -33,20 +34,19 @@ require (
3334
github.com/coinbase/rosetta-sdk-go v0.8.2 // indirect
3435
github.com/confio/ics23/go v0.9.0 // indirect
3536
github.com/coniks-sys/coniks-go v0.0.0-20180722014011-11acf4819b71 // indirect
36-
github.com/cosmos/btcutil v1.0.4 // indirect
37+
github.com/cosmos/btcutil v1.0.5 // indirect
3738
github.com/cosmos/go-bip39 v1.0.0 // indirect
3839
github.com/cosmos/gorocksdb v1.2.0 // indirect
3940
github.com/cosmos/iavl v0.19.4 // indirect
40-
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect
41-
github.com/cosmos/ledger-go v0.9.2 // indirect
42-
github.com/danieljoos/wincred v1.0.2 // indirect
41+
github.com/cosmos/ledger-cosmos-go v0.12.1 // indirect
42+
github.com/danieljoos/wincred v1.1.2 // indirect
4343
github.com/davecgh/go-spew v1.1.1 // indirect
4444
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
4545
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
4646
github.com/dgraph-io/ristretto v0.1.0 // indirect
4747
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
4848
github.com/dustin/go-humanize v1.0.0 // indirect
49-
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b // indirect
49+
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
5050
github.com/felixge/httpsnoop v1.0.1 // indirect
5151
github.com/fsnotify/fsnotify v1.6.0 // indirect
5252
github.com/go-kit/kit v0.12.0 // indirect
@@ -55,10 +55,10 @@ require (
5555
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
5656
github.com/gogo/gateway v1.1.0 // indirect
5757
github.com/gogo/protobuf v1.3.3 // indirect
58-
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
58+
github.com/golang/glog v1.0.0 // indirect
5959
github.com/golang/protobuf v1.5.2 // indirect
6060
github.com/golang/snappy v0.0.4 // indirect
61-
github.com/google/btree v1.0.0 // indirect
61+
github.com/google/btree v1.1.2 // indirect
6262
github.com/google/gofuzz v1.2.0 // indirect
6363
github.com/google/orderedcode v0.0.1 // indirect
6464
github.com/gorilla/handlers v1.5.1 // indirect
@@ -77,56 +77,54 @@ require (
7777
github.com/inconshreveable/mousetrap v1.0.1 // indirect
7878
github.com/jmhodges/levigo v1.0.0 // indirect
7979
github.com/josharian/intern v1.0.0 // indirect
80-
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
81-
github.com/klauspost/compress v1.15.1 // indirect
80+
github.com/klauspost/compress v1.15.11 // indirect
8281
github.com/lib/pq v1.10.7 // indirect
8382
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
84-
github.com/line/tm-db/v2 v2.0.0-init.1.0.20220121012851-61d2bc1d9486 // indirect
85-
github.com/line/wasmvm v1.0.0-0.10.0 // indirect
83+
github.com/line/ibc-go/v3 v3.3.1 // indirect
84+
github.com/line/wasmvm v1.1.1-0.11.0.0.20230113085344-89650a7edd05 // indirect
8685
github.com/magiconair/properties v1.8.7 // indirect
8786
github.com/mailru/easyjson v0.7.7 // indirect
8887
github.com/mattn/go-colorable v0.1.13 // indirect
8988
github.com/mattn/go-isatty v0.0.17 // indirect
9089
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
91-
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
90+
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
9291
github.com/minio/highwayhash v1.0.2 // indirect
93-
github.com/mitchellh/go-homedir v1.1.0 // indirect
9492
github.com/mitchellh/mapstructure v1.5.0 // indirect
9593
github.com/mtibben/percent v0.2.1 // indirect
96-
github.com/pelletier/go-toml v1.9.5 // indirect
97-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
94+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
9895
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
9996
github.com/pkg/errors v0.9.1 // indirect
10097
github.com/pmezard/go-difflib v1.0.0 // indirect
10198
github.com/prometheus/client_model v0.3.0 // indirect
10299
github.com/prometheus/common v0.39.0 // indirect
103100
github.com/prometheus/procfs v0.8.0 // indirect
104101
github.com/r2ishiguro/vrf v0.0.0-20180716233122-192de52975eb // indirect
105-
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
102+
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
106103
github.com/regen-network/cosmos-proto v0.3.1 // indirect
107104
github.com/rs/cors v1.8.2 // indirect
108105
github.com/rs/zerolog v1.28.0 // indirect
109106
github.com/sasha-s/go-deadlock v0.3.1 // indirect
110-
github.com/spf13/afero v1.9.2 // indirect
107+
github.com/spf13/afero v1.9.3 // indirect
111108
github.com/spf13/jwalterweatherman v1.1.0 // indirect
112109
github.com/spf13/pflag v1.0.5 // indirect
113-
github.com/subosito/gotenv v1.4.1 // indirect
110+
github.com/subosito/gotenv v1.4.2 // indirect
114111
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
115112
github.com/tendermint/btcd v0.1.1 // indirect
116113
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
117114
github.com/tendermint/go-amino v0.16.0 // indirect
118-
github.com/tendermint/tendermint v0.34.20 // indirect
119-
github.com/zondax/hid v0.9.0 // indirect
115+
github.com/tendermint/tendermint v0.34.24 // indirect
116+
github.com/zondax/hid v0.9.1 // indirect
117+
github.com/zondax/ledger-go v0.14.0 // indirect
120118
go.etcd.io/bbolt v1.3.6 // indirect
121-
golang.org/x/crypto v0.4.0 // indirect
119+
golang.org/x/crypto v0.5.0 // indirect
122120
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
123-
golang.org/x/net v0.4.0 // indirect
124-
golang.org/x/sys v0.3.0 // indirect
125-
golang.org/x/term v0.3.0 // indirect
126-
golang.org/x/text v0.5.0 // indirect
127-
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e // indirect
128-
google.golang.org/grpc v1.50.1 // indirect
129-
google.golang.org/protobuf v1.28.1 // indirect
121+
golang.org/x/net v0.5.0 // indirect
122+
golang.org/x/sys v0.4.0 // indirect
123+
golang.org/x/term v0.4.0 // indirect
124+
golang.org/x/text v0.6.0 // indirect
125+
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
126+
google.golang.org/grpc v1.52.0 // indirect
127+
google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 // indirect
130128
gopkg.in/ini.v1 v1.67.0 // indirect
131129
gopkg.in/yaml.v2 v2.4.0 // indirect
132130
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)