I’m trying to figure out how to pass vector args into the “move run” command. This is what I’m doing:
move run src/scripts/create.move --signers 0xf --args “111111” “111111” // works! (for some reason)
move run src/scripts/create.move --signers 0xf --args “000000” “111111” //
Execution failed with unexpected error FAILED_TO_DESERIALIZE_ARGUMENT
move run src/scripts/create.move --signers 0xf --args b"11111" b"11111"
error: Invalid value for ‘–args …’: unexpected token Name(“b11111”), expected transaction argument
Let me know if there’s some documentation on this. Thanks!