We can run Devnet with multiple options like (seed, Gas Price etc...), it would be nice then to be able to fetch those infos.
For example, if I am running Devnet like this docker run -p 127.0.0.1:5050:5050 shardlabs/starknet-devnet-rs --accounts 8 --accountClass cairo0 --initialBalance 1000000000000000 --seed 12, I should be able to fetch the configuration and see that I am using seed 12initialBalance 1000000000000000accounts 8 and accountClass cairo0.
Describe the feature
We can run Devnet with multiple options like (seed, Gas Price etc...), it would be nice then to be able to fetch those infos. For example, if I am running Devnet like this
docker run -p 127.0.0.1:5050:5050 shardlabs/starknet-devnet-rs --accounts 8 --accountClass cairo0 --initialBalance 1000000000000000 --seed 12
, I should be able to fetch the configuration and see that I am usingseed 12
initialBalance 1000000000000000
accounts 8
andaccountClass cairo0
.