-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_protos.sh
executable file
·38 lines (27 loc) · 1.03 KB
/
update_protos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
buf export buf.build/evmos/evmos --output .
buf export buf.build/osmosis-labs/osmosis --output .
# buf export buf.build/kyve//chain --output .
buf export buf.build/cosmwasm/wasmd --output .
mkdir temp
cd temp
git clone https://github.com/umee-network/umee
buf export umee/proto --output ../
git clone https://github.com/Gravity-Bridge/Gravity-Bridge
buf export Gravity-Bridge/module/proto --output ../
git clone https://github.com/ingenuity-build/quicksilver
buf export quicksilver/proto --output ../
git clone https://github.com/KYVENetwork/chain
buf export chain/proto --output ../
git clone https://github.com/lavanet/lava
mkdir -p ../lavanet/lava
cp -r lava/proto/* ../lavanet/lava
git clone https://github.com/axelarnetwork/axelar-core
cp -r axelar-core/proto/* ../
git clone https://github.com/chain4energy/c4e-chain
cp -r c4e-chain/proto/* ../
git clone https://github.com/babylonlabs-io/babylon.git
cp -r babylon/proto/* ../
cd ..
rm -rf temp
buf export buf.build/cosmos/cosmos-sdk --output .
buf export buf.build/cosmos/ibc --output .