osmosis-labs / beaker

Beaker helps streamlining CosmWasm development workflow.
Apache License 2.0
106 stars 30 forks source link

bip39 error #68

Closed daniel-farina closed 2 years ago

daniel-farina commented 2 years ago

Not sure if it's a syntax error or actual issue with custom seeds:

beaker wasm deploy counter --network testnet --no-wasm-opt --raw '{ "count": 0 }' --label 'My first Beaker Contract' --signer-mnemonic='orange gauge excuse picnic giggle track taxi outdoor extra sock lock vacant'

also tried

beaker wasm deploy counter --network testnet --no-wasm-opt --raw '{ "count": 0 }' --label 'My first Beaker Contract' --signer-mnemonic="orange gauge excuse picnic giggle track taxi outdoor extra sock lock vacant"

and

beaker wasm deploy counter --network testnet --no-wasm-opt --raw '{ "count": 0 }' --label 'My first Beaker Contract' --signer-mnemonic "orange gauge excuse picnic giggle track taxi outdoor extra sock lock vacant"

Looking forward to #46 as I see it crucial for mainnet deployments.

iboss-ptk commented 2 years ago

@daniel-farina The mnemonic you used to test has unsafe entropy, so it is rejected, which I think it make sense, shouldn't encourage people with that. Error msg might need improvement tho.