Skip to content
Open
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
6 changes: 6 additions & 0 deletions yaci-indexer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@
<artifactId>yaci-store-admin-spring-boot-starter</artifactId>
<version>${yaci-store.version}</version>
</dependency>
<!-- Admin UI -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>yaci-store-admin-ui</artifactId>
<version>${yaci-store.version}</version>
</dependency>
<!-- Used for governance data (Voltaire) -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
Expand Down
12 changes: 12 additions & 0 deletions yaci-indexer/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,18 @@ logging.level.com.bloxbean.cardano.yaci.core.protocol.keepalive=debug
store.admin.auto-recovery-enabled=true
store.admin.health-check-interval=20

#####################################
# Admin UI Configuration
# Admin UI can be accessed at http://ip:port/admin-ui/
#####################################
store.admin.ui.enabled=true
# Enable/disable sync control operations (start/stop/restart) in Admin UI.
# When disabled, sync control buttons are hidden and API endpoints return 403.
# Also disabled automatically when store.read-only-mode=true
store.admin.ui.sync-control-enabled=true
# Header text displayed in Admin UI
store.admin.ui.header-text="Cardano Rosetta Java Admin - Powered by Yaci Store"

store.utxo.pruning-enabled=${REMOVE_SPENT_UTXOS:true}
store.utxo.pruning-safe-blocks=${REMOVE_SPENT_UTXOS_LAST_BLOCKS_GRACE_COUNT:129600}
store.utxo.pruning-interval=10800
Expand Down