Closed
Description
In this issue we will replace all imports of github.com/tendermint/tendermint/... for github.com/cometbft/cometbft
- main: replace tendermint/tendermint for cometbft/cometbft #142
- 0.37.x: replace tendermint/tendermint for cometbft/cometbft #155
- 0.34.x: replace tendermint/tendermint for cometbft/cometbft #156 + replace tendermint deps in 0.34 #192
General approach
- rename package imports
#gawk -i inplace -f <thisfile> **/*.go
{
if ($0 ~ /github.com\/tendermint\/tendermint/ && $0 !~ /issues/) {
gsub("github.com\/tendermint\/tendermint", "github.com/cometbft/cometbft")
}
print $0
}
- update
go.mod
to providecometbft/cometbft
package - update
go.mod
to point totm-load-test
to 1.3.0 - update Makefile to reflect the renaming
make mockery
- update proto files to generate the right names
make proto-gen