forked from strangelove-ventures/heighliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chains.yaml
926 lines (844 loc) · 22.3 KB
/
chains.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
# Acrechain
- name: acrechain
github-organization: ArableProtocol
github-repo: acrechain
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/acred
build-env:
- LEDGER_ENABLED=false
# Agoric-sdk
- name: agoric
dockerfile: imported
base-image: agoric/agoric-sdk
# Akash
- name: akash
github-organization: ovrclk
github-repo: akash
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/akash
# Assetmantle
- name: assetmantle
github-organization: assetmantle
github-repo: node
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/mantleNode
build-env:
- LEDGER_ENABLED=false
# Avalanche
- name: avalanche
github-organization: ava-labs
github-repo: avalanchego
dockerfile: avalanche
build-target:
bash scripts/build.sh
binaries:
- build/avalanchego
# Axelar
- name: axelar
github-organization: axelarnetwork
github-repo: axelar-core
dockerfile: cosmos
binaries:
- bin/axelard
build-target: |
set -eux
apk add --update nodejs npm jq py3-pip
git clone -b v4.3.0 --single-branch https://github.com/axelarnetwork/axelar-cgp-solidity.git
cd axelar-cgp-solidity
# The npm commands will complain about nodejs versions but will proceed.
# See issue: https://github.com/strangelove-ventures/heighliner/issues/92
npm ci
npm run build
npm run flatten
mkdir -p ../contract-artifacts/gateway
mv artifacts/* ../contract-artifacts/
cd ..
VERSION=$(echo $(git describe --tags) | sed 's/^v//')
COMMIT=$(git log -1 --format='%H')
BUILD_TAGS=muslc
LDFLAGS="$LDFLAGS -X github.com/cosmos/cosmos-sdk/version.Name=axelar \
-X github.com/cosmos/cosmos-sdk/version.AppName=axelard \
-X github.com/cosmos/cosmos-sdk/version.Version=$VERSION \
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$BUILD_TAGS" \
-X github.com/cosmos/cosmos-sdk/version.Commit=$COMMIT"
go build -o ./bin/axelard -mod=readonly -tags "$BUILD_TAGS" -ldflags "$LDFLAGS" ./cmd/axelard
platforms:
- linux/amd64
# Axelar tofnd
- name: tofnd
github-organization: axelarnetwork
github-repo: tofnd
dockerfile: cargo
build-target: cargo build --release
pre-build:
apt install -y libgmp3-dev:${TARGETARCH}
binaries:
- /build/tofnd/target/${ARCH}-unknown-linux-gnu/release/tofnd
# Basilisk
- name: basilisk
github-organization: galacticcouncil
github-repo: Basilisk-node
dockerfile: cargo
build-target: cargo build --release -Zbuild-std
pre-build: |
apt install -y zlib1g-dev:${TARGETARCH}
TOOLCHAIN=$(cat rust-toolchain | grep channel | awk '{print $3}' | tr -d '"')
rustup component add rust-src --toolchain ${TOOLCHAIN}-$(uname -m)-unknown-linux-gnu
./scripts/init.sh
binaries:
- /build/Basilisk-node/target/${ARCH}-unknown-linux-gnu/release/basilisk
# Bitcanna
- name: bitcanna
github-organization: BitCannaGlobal
github-repo: bcna
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/bcnad
# BitSong
- name: bitsong
github-organization: bitsongofficial
github-repo: go-bitsong
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/bitsongd
# Bostrom
- name: bostrom
github-organization: cybercongress
github-repo: go-cyber
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/cyber
build-env:
- BUILD_TAGS=muslc
# Carbon
- name: carbon
github-organization: Switcheo
github-repo: carbon-bootstrap
dockerfile: cargo
build-target: |
apt update && apt install wget build-essential jq cmake sudo -y
wget https://github.com/google/leveldb/archive/1.23.tar.gz && \
tar -zxvf 1.23.tar.gz && \
wget https://github.com/google/googletest/archive/release-1.11.0.tar.gz && \
tar -zxvf release-1.11.0.tar.gz && \
mv googletest-release-1.11.0/* leveldb-1.23/third_party/googletest && \
wget https://github.com/google/benchmark/archive/v1.5.5.tar.gz && \
tar -zxvf v1.5.5.tar.gz && \
mv benchmark-1.5.5/* leveldb-1.23/third_party/benchmark && \
cd leveldb-1.23 && \
mkdir -p build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON .. && \
cmake --build . && \
sudo cp -P libleveldb.so* /usr/local/lib/ && \
sudo ldconfig && \
cd .. && \
sudo cp -r include/leveldb /usr/local/include/ && \
cd .. && \
NETWORK=mainnet
VERSION_NUM=$(echo ${VERSION} | cut -c 2-)
wget https://github.com/Switcheo/carbon-bootstrap/releases/download/"${VERSION}"/carbond"${VERSION_NUM}"-${NETWORK}.linux-$(dpkg --print-architecture).tar.gz
tar -xvf carbond${VERSION_NUM}-${NETWORK}.linux-$(dpkg --print-architecture).tar.gz
sudo mv carbond /usr/local/bin
libraries:
- /usr/local/lib/libleveldb.so.*
binaries:
- /usr/local/bin/carbond
# Cerberus
- name: cerberus
github-organization: cerberus-zone
github-repo: cerberus
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/cerberusd
# Cheqd
- name: cheqd
github-organization: cheqd
github-repo: cheqd-node
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/cheqd-noded
# Chihuahua
- name: chihuahua
github-organization: ChihuahuaChain
github-repo: chihuahua
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/chihuahuad
# Comdex
- name: comdex
github-organization: comdex-official
github-repo: comdex
dockerfile: cosmos
build-target: make install
build-env:
- BUILD_TAGS=muslc
binaries:
- /go/bin/comdex
# Composable
- name: composable
github-organization: ComposableFi
github-repo: composable
dockerfile: cargo
build-target: |
apt install -y zlib1g-dev:${TARGETARCH}
TOOLCHAIN=$(cat rust-toolchain.toml | grep channel | awk '{print $3}' | tr -d '"')
rustup component add rust-src --toolchain ${TOOLCHAIN}-$(uname -m)-unknown-linux-gnu
rustup target add wasm32-unknown-unknown
cd code
cargo build --release -p wasm-optimizer
cargo build --release -p composable-runtime-wasm --target wasm32-unknown-unknown
cargo build --release -p picasso-runtime-wasm --target wasm32-unknown-unknown
cargo build --release -p dali-runtime-wasm --target wasm32-unknown-unknown
./target/release/wasm-optimizer --input ./target/wasm32-unknown-unknown/release/dali_runtime.wasm --output ./target/wasm32-unknown-unknown/release/dali_runtime.optimized.wasm
./target/release/wasm-optimizer --input ./target/wasm32-unknown-unknown/release/picasso_runtime.wasm --output ./target/wasm32-unknown-unknown/release/picasso_runtime.optimized.wasm
./target/release/wasm-optimizer --input ./target/wasm32-unknown-unknown/release/composable_runtime.wasm --output ./target/wasm32-unknown-unknown/release/composable_runtime.optimized.wasm
cargo build --release -p composable -Zbuild-std --features=builtin-wasm
build-dir: code
build-env:
- DALI_RUNTIME=/build/composable/code/target/wasm32-unknown-unknown/release/dali_runtime.optimized.wasm
- PICASSO_RUNTIME=/build/composable/code/target/wasm32-unknown-unknown/release/picasso_runtime.optimized.wasm
- COMPOSABLE_RUNTIME=/build/composable/code/target/wasm32-unknown-unknown/release/composable_runtime.optimized.wasm
binaries:
- /build/composable/code/target/${ARCH}-unknown-linux-gnu/release/composable
# Cosmos Hub
- name: gaia
github-organization: cosmos
github-repo: gaia
dockerfile: cosmos
build-target: make install
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc
binaries:
- /go/bin/gaiad
# Cosmos Hub ICS
- name: ics
github-organization: cosmos
github-repo: interchain-security
dockerfile: cosmos
build-target: |
export GOFLAGS='-buildmode=pie'
export CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2"
export CGO_LDFLAGS="-Wl,-z,relro,-z,now -fstack-protector"
go install -ldflags="$LDFLAGS" ./cmd/interchain-security-pd
go install -ldflags="$LDFLAGS" ./cmd/interchain-security-cd
binaries:
- /go/bin/interchain-security-pd
- /go/bin/interchain-security-cd
# Crescent
- name: crescent
github-organization: crescent-network
github-repo: crescent
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/crescentd
# Cronos
- name: cronos
github-organization: crypto-org-chain
github-repo: cronos
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/cronosd
# Crypto.org
- name: cryptoorgchain
github-organization: crypto-org-chain
github-repo: chain-main
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/chain-maind
# Decentr
- name: decentr
github-organization: Decentr-net
github-repo: decentr
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/decentrd
# Desmos
- name: desmos
github-organization: desmos-labs
github-repo: desmos
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/desmos
build-env:
- BUILD_TAGS=muslc
# Dig
- name: dig
github-organization: notional-labs
github-repo: dig
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/digd
build-env:
- BUILD_TAGS=muslc
# Duality
- name: duality
github-organization: duality-labs
github-repo: duality
dockerfile: cosmos
build-target: make install
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc
binaries:
- /go/bin/dualityd
# Emoney
- name: emoney
github-organization: e-money
github-repo: em-ledger
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/emd
# Evmos
- name: evmos
github-organization: tharsis
github-repo: evmos
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/evmosd
# Fetchhub
- name: fetchhub
github-organization: fetchai
github-repo: fetchd
dockerfile: cosmos
build-target: make install
build-env:
- BUILD_TAGS=muslc
binaries:
- /go/bin/fetchd
# FirmaChain
- name: firmachain
github-organization: FirmaChain
github-repo: firmachain
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/firmachaind
# Gravity Bridge
- name: gravitybridge
github-organization: Gravity-Bridge
github-repo: Gravity-Bridge
dockerfile: cosmos
build-target: make build
build-dir: module
binaries:
- module/build/gravity
# ibc-go sim (for testing)
- name: ibc-go-simd
github-organization: cosmos
github-repo: ibc-go
dockerfile: cosmos
build-target: make build
binaries:
- build/simd
build-env:
- BUILD_TAGS=muslc
# ImpactHub
- name: impacthub
github-organization: ixofoundation
github-repo: ixo-blockchain
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/ixod
# Injective
- name: injective
pre-build: |
apt update
apt install unzip
wget https://github.com/InjectiveLabs/injective-chain-releases/releases/download/$VERSION/linux-amd64.zip
unzip linux-amd64.zip
mv injectived peggo injective-exchange /usr/bin
mv libwasmvm.x86_64.so /usr/lib
binaries:
- /usr/bin/injectived
- /usr/bin/peggo
- /usr/bin/injective-exchange
libraries:
- /usr/lib/libwasmvm.x86_64.so
platforms:
- linux/amd64
# Interchain accounts demo
- name: icad
github-organization: cosmos
github-repo: interchain-accounts-demo
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/icad
# Interchain queries demo
- name: icqd
github-organization: quasar-finance
github-repo: interchain-query-demo
dockerfile: cosmos
build-target: go build -ldflags "$LDFLAGS" -o build/icq ./cmd/interchain-query-demod
binaries:
- build/icq
# IRISnet
- name: irisnet
github-organization: irisnet
github-repo: irishub
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/iris
# Juno
- name: juno
github-organization: CosmosContracts
github-repo: juno
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/junod
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc
# Kichain
- name: kichain
github-organization: KiFoundation
github-repo: ki-tools
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/kid
build-env:
- BUILD_TAGS=muslc
# Konstellation
- name: konstellation
github-organization: knstl
github-repo: konstellation
dockerfile: cosmos
build-target: make install
build-env:
- BUILD_TAGS=muslc
binaries:
- /go/bin/knstld
# Kujira
- name: kujira
github-organization: Team-Kujira
github-repo: core
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/kujirad
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc
# Likecoin
- name: likecoin
github-organization: likecoin
github-repo: likecoin-chain
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/liked
# Lumnetwork
- name: lumnetwork
github-organization: lum-network
github-repo: chain
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/lumd
# Nomic
- name: nomic
github-organization: nomic-io
github-repo: nomic
dockerfile: cargo
build-target: |
TOOLCHAIN=$(cat rust-toolchain.toml | grep channel | awk '{print $3}' | tr -d '"')
rustup component add rust-src --toolchain ${TOOLCHAIN}-$(uname -m)-unknown-linux-gnu
cargo install --locked --path . -Zbuild-std
binaries:
- /build/nomic/target/${ARCH}-unknown-linux-gnu/release/nomic
# TODO remove platforms here so that both linux/amd64 and linux/arm64 are built
# once these changes are merged: https://github.com/nomic-io/orga/pull/154
platforms:
- linux/amd64
# Neutron
- name: neutron
github-organization: neutron-org
github-repo: neutron
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/neutrond
build-env:
- BUILD_TAGS=muslc
# Nibiru
- name: nibiru
github-organization: NibiruChain
github-repo: nibiru
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/nibid
build-env:
- BUILD_TAGS=muslc
# Noble
- name: noble
github-organization: strangelove-ventures
github-repo: noble
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/nobled
# Nolus
- name: nolus
github-organization: Nolus-Protocol
github-repo: nolus-core
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/nolusd
build-env:
- BUILD_TAGS=muslc
# Omniflixhub
- name: omniflixhub
github-organization: OmniFlix
github-repo: omniflixhub
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/omniflixhubd
# Onomy
- name: onomy
github-organization: onomyprotocol
github-repo: onomy
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/onomyd
# Onomy gbt: Not a chain, companion process required by validator
- name: onomy-gbt
github-organization: onomyprotocol
github-repo: arc
dockerfile: cargo
build-dir: orchestrator
build-target: cargo build --release
binaries:
- /build/arc/orchestrator/target/${ARCH}-unknown-linux-gnu/release/gbt
# Osmosis
- name: osmosis
github-organization: osmosis-labs
github-repo: osmosis
dockerfile: cosmos
build-target: make build
binaries:
- build/osmosisd
build-env:
- BUILD_TAGS=muslc
# panacea
- name: panacea
github-organization: medibloc
github-repo: panacea-core
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/panacead
build-env:
- BUILD_TAGS=muslc
# Penumbra
- name: penumbra
github-organization: penumbra-zone
github-repo: penumbra
dockerfile: cargo
build-target: cargo build --release
binaries:
- /build/penumbra/target/${ARCH}-unknown-linux-gnu/release/pd
- /build/penumbra/target/${ARCH}-unknown-linux-gnu/release/pcli
- /build/penumbra/target/${ARCH}-unknown-linux-gnu/release/pclientd
target-libraries:
- /lib/${ARCH}-linux-gnu/libnss_dns.so.2
- /lib/${ARCH}-linux-gnu/libresolv.so.2
# Persistence
- name: persistence
github-organization: persistenceOne
github-repo: persistenceCore
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/persistenceCore
# Polkadot
- name: polkadot
github-organization: paritytech
github-repo: polkadot
dockerfile: cargo
build-target: cargo build --release
pre-build: |
./scripts/init.sh
binaries:
- /build/polkadot/target/${ARCH}-unknown-linux-gnu/release/polkadot
# Provenance
- name: provenance
github-organization: provenance-io
github-repo: provenance
dockerfile: cosmos
build-target: make install
pre-build: |
apk add --no-cache g++
git clone https://github.com/edenhill/librdkafka.git
cd librdkafka
git checkout v1.8.2
./configure
make
make install
binaries:
- /go/bin/provenanced
build-env:
- WITH_LEDGER=false
- WITH_CLEVELDB=false
- BUILD_TAGS=muslc musl dynamic
# Quasar
- name: quasar
github-organization: quasar-finance
github-repo: quasar-preview
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/quasarnoded
build-env:
- BUILD_TAGS=muslc
# Quasar testnet
- name: quasartestnet
pre-build: |
apt update
wget "https://github.com/quasar-finance/binary-release/blob/main/$VERSION/quasarnoded-linux-amd64?raw=true" -O quasarnoded
mv quasarnoded /usr/bin
chmod 555 /usr/bin/quasarnoded
binaries:
- /usr/bin/quasarnoded
platforms:
- linux/amd64
# Quicksilver
- name: quicksilver
github-organization: ingenuity-build
github-repo: quicksilver
dockerfile: cosmos
build-target: make build
binaries:
- build/quicksilverd
# Regen
- name: regen
github-organization: regen-network
github-repo: regen-ledger
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/regen
# Rizon
- name: rizon
github-organization: rizon-world
github-repo: rizon
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/rizond
# Secret Network
- name: secretnetwork
dockerfile: imported
base-image: ghcr.io/scrtlabs/secret-network-node
platforms:
- linux/amd64
# Sei
- name: sei
github-organization: sei-protocol
github-repo: sei-chain
dockerfile: cargo
build-target: |
set -eux
# Build nitro
cd nitro-replayer
cargo build --release
cp target/${ARCH}-unknown-linux-gnu/release/libnitro_replayer.so ../x/nitro/replay/libnitro_replayer.${ARCH}.so
cd ..
# Build seid
export GOOS=linux GOARCH=${TARGETARCH}
make install
binaries:
- /root/go/bin/seid
libraries:
- /build/sei-chain/x/nitro/replay/libnitro_replayer.${ARCH}.so
- /root/go/pkg/mod/github.com/!cosm!wasm/wasmvm@v*/api/libwasmvm.${ARCH}.so
platforms:
- linux/amd64
# Sentinel
- name: sentinel
github-organization: sentinel-official
github-repo: hub
dockerfile: cosmos
# Sentinel Makefile does not consume LDFLAGS or BUILD_TAGS env vars.
build-target: |
BUILD_TAGS=netgo,muslc
LD_FLAGS="-s -w -X github.com/cosmos/cosmos-sdk/version.Name=sentinel -X github.com/cosmos/cosmos-sdk/version.AppName=sentinelhub -X github.com/cosmos/cosmos-sdk/version.Version=$(echo $(git describe --tags) | sed 's/^v//') -X github.com/cosmos/cosmos-sdk/version.Commit=$(git log -1 --format='%H') -X github.com/cosmos/cosmos-sdk/version.BuildTags=\"${BUILD_TAGS}\" -X github.com/tendermint/tendermint/version.TMCoreSemVer=$(go list -m github.com/tendermint/tendermint | sed 's:.* ::')"
go install -mod=readonly -tags="${BUILD_TAGS}" -ldflags="$LDFLAGS ${LD_FLAGS}" ./cmd/sentinelhub
binaries:
- /go/bin/sentinelhub
# Shentu
- name: shentu
github-organization: ShentuChain
github-repo: shentu
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/certik
# Sifchain
- name: sifchain
github-organization: Sifchain
github-repo: sifnode
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/sifnoded
# Sim (for testing)
- name: sim
github-organization: cosmos
github-repo: cosmos-sdk
dockerfile: cosmos
build-target: make build
binaries:
- build/simd
# Sommelier
- name: sommelier
github-organization: peggyjv
github-repo: sommelier
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/sommelier
# Stargaze
- name: stargaze
github-organization: public-awesome
github-repo: stargaze
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/starsd
build-env:
- BUILD_TAGS=muslc
# Starname
- name: starname
github-organization: iov-one
github-repo: starnamed
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/starnamed
build-env:
- BUILD_TAGS=muslc
# Stride
- name: stride
github-organization: Stride-Labs
github-repo: stride
dockerfile: cosmos
build-target: make build
binaries:
- build/strided
# Tendermint
- name: tendermint
github-organization: tendermint
github-repo: tendermint
dockerfile: cosmos
build-target: make build
binaries:
- /go/src/github.com/tendermint/tendermint/build/tendermint
# Terp Network
- name: terpnetwork
github-organization: terpnetwork
github-repo: terp-core
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/terpd
build-env:
- BUILD_TAGS=muslc
# Terra
- name: terra
github-organization: terra-money
github-repo: core
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/terrad
build-env:
- BUILD_TAGS=muslc
# testnetx
- name: testnetx
pre-build: |
apt update
wget https://storage.googleapis.com/strangelove-public/testnetx/testnetx-${VERSION}-linux-amd64
mv testnetx-${VERSION}-linux-amd64 /usr/bin/testnetx
chmod 755 /usr/bin/testnetx
binaries:
- /usr/bin/testnetx
platforms:
- linux/amd64
# Thorchain
- name: thorchain
repo-host: gitlab.com
github-organization: thorchain
github-repo: thornode
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/thornode
pre-build: |
apk --no-cache add findutils protoc && \
rm -rf /var/cache/apk/*
# Umee
- name: umee
github-organization: umee-network
github-repo: umee
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/umeed
# Vidulum
- name: vidulum
github-organization: vidulum
github-repo: mainnet
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/vidulumd
# Wasm
- name: wasm
github-organization: CosmWasm
github-repo: wasmd
dockerfile: cosmos
build-target: make build
binaries:
- build/wasmd
build-env:
- BUILD_TAGS=muslc
# Xion
- name: xion
github-organization: burnt-labs
github-repo: xion
dockerfile: cosmos
build-target: make install
binaries:
- /go/bin/xiond
build-env:
- BUILD_TAGS=muslc