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: 10 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ GENVMROOT="/genvm"
GENVM_LLM_DEBUG="0"
GENVM_WEB_DEBUG="0"

########################################
# Studio Fee Accounting
# Set all three price values to 0 to run Studio in gasless mode.
GENLAYER_STUDIO_GEN_PER_TIME_UNIT='1000000000000000' # 0.001 GEN per time unit
GENLAYER_STUDIO_STORAGE_UNIT_PRICE='1'
GENLAYER_STUDIO_RECEIPT_GAS_PRICE='1'
GENLAYER_STUDIO_FIXED_PROPOSE_RECEIPT_GAS='210000'
GENLAYER_STUDIO_FIXED_MESSAGE_REVEAL_GAS='100000'
GENLAYER_STUDIO_RECEIPT_WRAPPER_BYTES='1024'

# Ollama Server Configuration
OLAMAPORT='11434'

Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/unit-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@ jobs:
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}

explorer-unit-tests:
if: (github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]')
name: Explorer Unit Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: explorer
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci --ignore-scripts
- run: npm run test:fee-accounting
- run: npm run lint
- run: npm run build

backend-unit-tests:
if: (github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]')
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,7 @@ config-overrides/
frontend/genlayer-js-0.28.2.tgz
frontend/.cache-synpress/
frontend/test-results/

# Local tool caches
.vite/
.claude/scheduled_tasks.lock
Loading
Loading