원격 서명자가 예상대로 작동하는지 확인하는 방법은 무엇입니까?
3 대답
- 투표
-
- 2019-04-03
저는이 작업을 선호합니다.
--dry-run
플래그를 추가하는 것을 잊지 않고 데이터에 서명하도록 직접 요청하는 것입니다.tezos-client sign bytes 0x03 for <tz alias or tz address>
여기서
0x03
은 이전 임의의 숫자입니다.여기에 16 진수 값을 입력 할 수 있습니다.원격 서명자가 작동하면 다음과 같은 메시지가 표시됩니다.Signature: sigPab0p1MdqojAaNTvASSvLo4ULEujfNFurF71EdoruABoPLLwmSxEDJf4NfQx8nJi3ncjfMEJbiWojTDXDUB8wNF5fgFIbA
I just prefer to do this...it's a direct request to sign data without any possibility of forgetting to add the
--dry-run
flag.tezos-client sign bytes 0x03 for <tz alias or tz address>
Here
0x03
is just any old random number. You could put any hex value here. If the remote signer is working you'll get back a message like:Signature: sigPab0p1MdqojAaNTvASSvLo4ULEujfNFurF71EdoruABoPLLwmSxEDJf4NfQx8nJi3ncjfMEJbiWojTDXDUB8wNF5fgFIbA
-
- 2019-02-24
--dry-run
문에서transfer
옵션을 사용하여 노드가 서명을 위해 트랜잭션을 원격 서명자에게 보낼 수 있다는 것을 알아 냈습니다.원격 서명자 로그를 확인하여 모든 것이 제대로 작동하는지 확인할 수 있습니다.transfer
은 실제로 트랜잭션을 네트워크로 보내지 않습니다.I figured out that you can use the
--dry-run
option in thetransfer
statement so that node will send transaction to remote-signer to sign, and you can check the remote-signer logs to see if everything is working fine or not.--dry-run
will not actually send the transaction to the network.-
--dry-run (또는 -D) 옵션은 명령의 맨 끝에 나타나야합니다. 약간 특이합니다.Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
- 2
- 2019-02-24
- nurikabe
-
- 2019-02-24
또 다른 옵션은 Kiln을 사용하는 것입니다.Kiln은 제빵사를 모니터링하고 제빵 또는 보증 기회를 놓친 경우이를 알려줍니다 (서명자가 다운되었음을 나타냄).
여기 에서 찾을 수 있습니다.
Another option would be to use Kiln. Kiln monitors your baker and will notify you if you miss any baking or endorsement opportunities (which will indicate that the signer is down).
It can be found here.
-
모니터링에는 좋지만 설정이 작동하는지 여부를 알기 위해 베이킹 또는 보증 작업을 기다린 다음 설정이 작동하지 않으면 베이킹/보증을 놓치고 싶지 않습니다.베이킹/보증 작업 전에 알고 싶습니다.That is good for monitoring but i don't want to wait for my baking or endorsement operation to know if my setup is working or not, and then miss my baking/endorsement if the setup was not working. I want to know before my baking/endorsement operation.
- 1
- 2019-02-25
- Sachin Tomar
-
이것은 어떤 식 으로든 질문에 대답하지 않습니다.OP는 '서명자'가 작동하는지 테스트하는 방법을 물었고이 소프트웨어는 작동하지 않습니다.This does not answer the question in any way. OP asked how to test that `signer` is working and this software will not do so.
- 2
- 2019-02-25
- utdrmac
-
직접적으로는 아니지만 간접적으로 ♂️ 도움을 주려고합니다.그러나 --dry-run은 괜찮은 접근 방식 인 것 같습니다.Not directly no, but indirectly ♂️ Just trying to help. But seems like the --dry-run is a decent approach
- 1
- 2019-02-25
- asbjornenge
시작된 원격 서명자 소켓이 예상대로 작동하고 실제로 전송 트랜잭션을 보내지 않고 제 베이커 서버의 서명 요청을 수락하는지 어떻게 알 수 있습니까?
지금은
.00005
에서<key1>
로<key2>
를 전송하여 원격 서명자인지 테스트합니다.설정이 작동합니다.서명은 필요하지만tz의 양도는 필요하지 않은 거래와 같은 다른 방법이 있습니까?