After connecting certain properties like ss58_format will be determined automatically by querying the RPC node. At
the moment this will work for most MetadataV14 and above runtimes like Polkadot, Kusama, Acala, Moonbeam. For
older or runtimes under development the ss58_format (default 42) and other properties should be set manually.
call=substrate.compose_call(call_module='Balances',call_function='transfer',call_params={'dest':'5E9oDs9PjpsBbxXxRE9uMaZZhnBAV38n2ouLB28oecBDdeQo','value':1*10**12})keypair=Keypair.create_from_uri('//Alice')extrinsic=substrate.create_signed_extrinsic(call=call,keypair=keypair)receipt=substrate.submit_extrinsic(extrinsic,wait_for_inclusion=True)print(f"Extrinsic '{receipt.extrinsic_hash}' sent and included in block '{receipt.block_hash}'")