Issue in cli on sputnik-dao-contract #1301
Unanswered
GaloisField2718
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Have you looked at using https://github.com/cloudmex/sputnikdao-cli rather than NEAR CLI directly? This seems to be an issue with bash scripting more than it is an issue with NEAR CLI. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I have this script :
This might put a
Vote
in a DAO.But, when I put a description as "I want to put a description", I have the error :
`near call [args]
schedule smart contract call which can modify state
Options : ...
Unknown Argument : want, to, put, a, description",
"kind" : "Vote"
}
}
Apparently the description is considered differently as simple text inside proposal. An important fact is, without space it works :
Scheduling a call: 1901.asso.testnet.add_proposal({"proposal" : {
"description": "HereADescription",
"kind" : "Vote"
}
}) with attached 0.1 NEAR
Doing account.functionCall()
Transaction Id HeioMcTSypA3FXCquk4QgYodeczq8ZFP3H9bA2K2Qq5U
To see the transaction in the transaction explorer, please open this url in your browser
https://explorer.testnet.near.org/transactions/HeioMcTSypA3FXCquk4QgYodeczq8ZFP3H9bA2K2Qq5U
18`
So what can I do to solve this issue ?
Beta Was this translation helpful? Give feedback.
All reactions