solana-playground / solana-playground

Quickly develop, deploy and test Solana programs from browsers
https://beta.solpg.io
Apache License 2.0
408 stars 140 forks source link

Seed generation force the first seed to be string #150

Closed JuanMarchetto closed 5 months ago

JuanMarchetto commented 9 months ago

In the "TEST" view if you select "from seed" in an address it give you a first seed which is string and you can't change that or delete it.

Proposal:

acheroncrypto commented 9 months ago

Agreed, there is a lot of potential improvements in test UI.

Proposal:

  • The type of that seed should be able to change
  • The seed should be posible to remove

This was actually implemented in https://github.com/solana-playground/solana-playground/pull/113 but it wasn't merged due to the other things that the PR had.

acheroncrypto commented 5 months ago

Implemented in https://github.com/solana-playground/solana-playground/commit/dad9d436a6c08de03972b240009f29f686c3019b

The first seed type no longer defaults to string and you can also delete it:

generate-from-seed-select

You can also edit any individual seed selection:

generate-from-seed-edit

Thanks for the proposal!