Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Stage 1
FROM node:lts as builder
WORKDIR /app
ENV NODE_OPTIONS=--openssl-legacy-provider

# Get the source
COPY . .

RUN yarn --ignore-engines && yarn build

# Stage 2
FROM ubuntu:latest
RUN apt-get -y update && apt-get install ca-certificates apache2 net-tools iproute2 -y
WORKDIR /var/www/html
RUN rm -rf *
COPY --from=builder /app/dist/ .
RUN chmod -R 777 *
EXPOSE 80

CMD ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
70 changes: 0 additions & 70 deletions chains/mainnet/axelar.json

This file was deleted.

28 changes: 0 additions & 28 deletions chains/mainnet/cosmos.json

This file was deleted.

43 changes: 0 additions & 43 deletions chains/mainnet/neutron.json

This file was deleted.

29 changes: 0 additions & 29 deletions chains/mainnet/nolus.json

This file was deleted.

47 changes: 0 additions & 47 deletions chains/mainnet/osmosis.json

This file was deleted.

41 changes: 41 additions & 0 deletions chains/mainnet/umee-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"chain_name": "umee-1",
"api": [
{
"address": "https://api-umee.mzonder.com/",
"provider": "mzonder",
"type": "rest"
},
{
"address": "https://umee-api.polkachu.com:443",
"provider": "Polkachu",
"type": "rest"
}
],
"rpc": [
{
"address": "https://rpc-umee.mzonder.com/",
"provider": "mzonder",
"type": "rpc"
},
{
"address": "https://umee-rpc.polkachu.com:443",
"provider": "Polkachu",
"type": "rpc"
}
],
"sdk_version": "0.47.11",
"coin_type": "118",
"min_tx_fee": "8000",
"addr_prefix": "umee",
"logo": "/logos/umee.png",
"assets": [
{
"base": "uumee",
"symbol": "UMEE",
"exponent": "6",
"coingecko_id": "umee",
"logo": "/logos/umee.png"
}
]
}
Loading