From c9e7eada2adbc7670d64f656f25d0826180e816f Mon Sep 17 00:00:00 2001 From: Errorist <71728280+Errorist79@users.noreply.github.com> Date: Tue, 3 Dec 2024 22:29:05 +0300 Subject: [PATCH] add new chains --- update_protos.sh | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/update_protos.sh b/update_protos.sh index 4d2b16f..7081797 100755 --- a/update_protos.sh +++ b/update_protos.sh @@ -1,12 +1,34 @@ +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/babylonlabs-io/babylon +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 ..