v0.5.2-pre.006
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user