We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d837684 commit 10f9352Copy full SHA for 10f9352
2 files changed
src/soroban/models.py
@@ -32,7 +32,9 @@ class Identity(BaseSettings):
32
public_key: str | None = None
33
keypair: Keypair | None = None
34
35
- model_config = SettingsConfigDict(env_file="identity.toml")
+ model_config = SettingsConfigDict(
36
+ env_file=["identity.toml", ".soroban/identity.toml"]
37
+ )
38
39
@model_validator(mode="after")
40
def load_keys(self) -> "Identity":
tests/identity.toml tests/.soroban/identity.tomltests/identity.toml renamed to tests/.soroban/identity.toml
0 commit comments