Skip to content
Merged
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
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,15 @@ worker/ethereum/*
worker/ethereum/sai-ethereum-indexer/*
!worker/ethereum/sai-ethereum-indexer/config.json
!worker/ethereum/sai-ethereum-indexer/contracts.json
!worker/ethereum/sai-ethereum-indexer/block.data

!worker/ethereum/sai-ethereum-contract-interaction/
worker/ethereum/sai-ethereum-contract-interaction/*
!worker/ethereum/sai-ethereum-contract-interaction/config.yml
!worker/ethereum/sai-ethereum-contract-interaction/contracts.json
!worker/ethereum/sai-ethereum-contract-interaction/contracts.json

# Ignore everything in sekai except configs
sekai/*
sekai/config/*

# Ignore everyting in interx
interx/*
10 changes: 10 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ services:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "storage"
ports:
- "8880:8880"
expose:
- "8880"
volumes:
Expand All @@ -109,6 +111,8 @@ services:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "cosmos-indexer"
ports:
- "8883:8883"
expose:
- "8883"
volumes:
Expand All @@ -130,6 +134,8 @@ services:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "cosmos-interaction"
ports:
- "8884:8884"
expose:
- "8884"
volumes:
Expand All @@ -152,6 +158,8 @@ services:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "ethereum-indexer"
ports:
- "8881:8881"
expose:
- "8881"
volumes:
Expand All @@ -175,6 +183,8 @@ services:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "ethereum-interaction"
ports:
- "8882:8882"
expose:
- "8882"
volumes:
Expand Down
3 changes: 2 additions & 1 deletion config/logrotate.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/var/log/syslog-ng/logs/sekai.log /var/log/syslog-ng/logs/shidai.log /var/log/syslog-ng/logs/shidai_backup.log /var/log/syslog-ng/logs/interx.log /var/log/syslog-ng/logs/logrotate.log {
/var/log/syslog-ng/logs/*.log {
size 1M
rotate 5
compress
Expand All @@ -11,3 +11,4 @@
syslog-ng-ctl reopen
endscript
}

58 changes: 0 additions & 58 deletions create-dapp-proposal.txt

This file was deleted.

6 changes: 3 additions & 3 deletions manager/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ common:

storage:
token: ""
url: "http://worker-sai-storage:8880"
url: "http://sekin-storage-1:8880"
ethereum:
interaction: "http://worker-sai-ethereum-interaction:8882"
interaction: "http://sekin-ethereum-interaction-1:8882"
nodes:
chain1: "https://data-seed-prebsc-1-s1.bnbchain.org:8545"
token: ""
Expand All @@ -26,7 +26,7 @@ cosmos:
async: true
block: true
gw_timeout: 30
interaction: "http://worker-sai-cosmos-interaction:8884"
interaction: "http://sekin-cosmos-interaction-1:8884"
token: ""
retries: 1
retry_delay: 10
Expand Down
2 changes: 1 addition & 1 deletion worker/sai-storage-mongo/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ common:
port: 8881
storage:
atlas: false
host: "mongo-db"
host: "sekin-mongo-1"
port: "27017"
user: ""
pass: ""
Expand Down
Loading