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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ dynamic = [ "version" ]
dependencies = [
"aiohttp>=3.8.3",
"aioresponses>=0.7.6",
"aleph-message>=0.6",
"aleph-message @ git+https://github.com/aleph-im/aleph-message.git@andres-feature-integrate_sonic_blockchain",
"aleph-superfluid>=0.2.1",
"base58==2.1.1", # Needed now as default with _load_account changement
"base58==2.1.1", # Needed now as default with _load_account changement
"coincurve; python_version<'3.11'",
"coincurve>=19; python_version>='3.11'",
"eth-abi>=4; python_version>='3.11'",
"eth-typing==4.3.1",
"jwcrypto==1.5.6",
"pynacl==1.5", # Needed now as default with _load_account changement
"pynacl==1.5", # Needed now as default with _load_account changement
"python-magic",
"typing-extensions",
"web3==6.3",
Expand Down
1 change: 1 addition & 0 deletions src/aleph/sdk/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
Chain.OPTIMISM: EVMAccount,
Chain.POL: EVMAccount,
Chain.SOL: SOLAccount,
Chain.SONIC: EVMAccount,
Chain.WORLDCHAIN: EVMAccount,
Chain.ZORA: EVMAccount,
}
Expand Down
6 changes: 6 additions & 0 deletions src/aleph/sdk/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ class Settings(BaseSettings):
chain_id=137,
rpc="https://polygon.gateway.tenderly.co",
),
Chain.SONIC: ChainInfo(
chain_id=146,
rpc="https://rpc.soniclabs.com",
),
Chain.WORLDCHAIN: ChainInfo(
chain_id=480,
rpc="https://worldchain-mainnet.gateway.tenderly.co",
Expand All @@ -189,6 +193,7 @@ class Settings(BaseSettings):
CHAINS_MODE_ACTIVE: Optional[bool] = None
CHAINS_OPTIMISM_ACTIVE: Optional[bool] = None
CHAINS_POL_ACTIVE: Optional[bool] = None
CHAINS_SONIC_ACTIVE: Optional[bool] = None
CHAINS_WORLDCHAIN_ACTIVE: Optional[bool] = None
CHAINS_ZORA_ACTIVE: Optional[bool] = None

Expand All @@ -208,6 +213,7 @@ class Settings(BaseSettings):
CHAINS_MODE_RPC: Optional[str] = None
CHAINS_OPTIMISM_RPC: Optional[str] = None
CHAINS_POL_RPC: Optional[str] = None
CHAINS_SONIC_RPC: Optional[str] = None
CHAINS_WORLDCHAIN_RPC: Optional[str] = None
CHAINS_ZORA_RPC: Optional[str] = None

Expand Down
Loading