v0.5.2-pre.006

This commit is contained in:
2026-08-10 23:14:17 +02:00
parent e3acb8ceb1
commit 066d969f5a
51 changed files with 1937 additions and 88 deletions

View File

@@ -1,5 +1,5 @@
<!-- file: config/README.md -->
<!-- version: 25 -->
<!-- version: 26 -->
# Configuration locale
@@ -90,6 +90,7 @@ Actuellement :
- `logging.config.json.logs_directory` vaut `${KS_LOGS_DIRECTORY:-logs}` ;
- `wallet.config.json.wallets_directory` vaut `${KS_WALLETS_DIRECTORY:-wallets}`.
- un profil wallet peut sélectionner un wallet natif persistant avec `wallet_alias`; le champ est optionnel/non sensible et ne contient jamais de mot de passe ni de matériau privé.
Ces valeurs peuvent être remplacées par l'environnement ou `.env` sans dupliquer un chemin dans tous les profils.

View File

@@ -67,6 +67,7 @@
"get_recent_performance_samples",
"get_recent_prioritization_fees",
"get_signature_statuses",
"get_signatures_for_address",
"get_slot",
"get_slot_leader",
"get_slot_leaders",

View File

@@ -6,9 +6,10 @@
"name": "local_devnet",
"directory": "temporary/local_devnet",
"cluster": "devnet",
"temporary_wallet_enabled": true,
"temporary_wallet_alias": "local-devnet-operator",
"temporary_wallet_persist": true
"wallet_alias": "example-operator",
"temporary_wallet_enabled": false,
"temporary_wallet_alias": "example-temporary-disabled",
"temporary_wallet_persist": false
}
]
}

View File

@@ -477,6 +477,15 @@
"cluster": {
"$ref": "#/$defs/non_empty_string"
},
"wallet_alias": {
"type": [
"string",
"null"
],
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
},
"temporary_wallet_enabled": {
"type": "boolean"
},

View File

@@ -50,6 +50,15 @@
"cluster": {
"$ref": "#/$defs/non_empty_string"
},
"wallet_alias": {
"type": [
"string",
"null"
],
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
},
"temporary_wallet_enabled": {
"type": "boolean"
},

View File

@@ -67,6 +67,7 @@
"get_recent_performance_samples",
"get_recent_prioritization_fees",
"get_signature_statuses",
"get_signatures_for_address",
"get_slot",
"get_slot_leader",
"get_slot_leaders",

View File

@@ -6,6 +6,7 @@
"name": "local_devnet",
"directory": "temporary/local_devnet",
"cluster": "devnet",
"wallet_alias": null,
"temporary_wallet_enabled": true,
"temporary_wallet_alias": "local-devnet-operator",
"temporary_wallet_persist": true
@@ -14,6 +15,7 @@
"name": "mainnet_research",
"directory": "temporary/mainnet_research",
"cluster": "mainnet-beta",
"wallet_alias": null,
"temporary_wallet_enabled": false,
"temporary_wallet_alias": "mainnet_research-disabled",
"temporary_wallet_persist": false
@@ -22,6 +24,7 @@
"name": "mainnet",
"directory": "temporary/mainnet",
"cluster": "mainnet-beta",
"wallet_alias": null,
"temporary_wallet_enabled": false,
"temporary_wallet_alias": "mainnet-disabled",
"temporary_wallet_persist": false