Skip to main content

Configuring

Steps to Configure Galexie

  1. Copy the Sample Configuration

    Start with the provided sample file, config.example.toml.

  2. Rename and Update the Configuration

    Rename the file to config.toml and adjust settings as needed.

    • Key Settings Include:

      • Google Cloud Storage (GCS) Bucket

        Specify the GCS bucket where Galexie will export Stellar ledger data. Update destination_bucket_path to the complete path of your GCS bucket, including subpaths if applicable.

        destination_bucket_path = "stellar-network-data/testnet"
      • Stellar Network

        Set the Stellar network to be used in creating the data lake.

        network = "testnet"
      • Data Organization (Optional)

        Configure how the exported data is organized in the GCS bucket. The example below adds 64 ledgers per file and organizes them in a directory of 1000 files.

         # Number of ledgers stored in each file
        ledgers_per_file = 1

        # Number of files per partition/directory
        files_per_partition = 64000