How to check if remote-signer is working as expected?How to batch transactions?How to make an offline...
Promise.all returning empty objects
Homeostasis logic/math problem
Trying to detect if any checked values contains a specific string
Crack the bank account's password!
What's the reason that we have a different number of days each month?
How to not let the Identify spell spoil everything?
Is it possible to detect 100% of SQLi with a simple regex?
Is there any good browser plugin or tool to quickly identify any security issues of a web site?
How can I prevent an oracle who can see into the past from knowing everything that has happened?
Is the percentage symbol a constant?
Why did Ylvis use "go" instead of "say" in phrases like "Dog goes 'woof'"?
If I tried and failed to start my own business, how do I apply for a job without job experience?
How to know if I am a 'Real Developer'
Calculating the strength of an ionic bond that contains poly-atomic ions
Why "rm -r" is unable to delete this folder?
How do I add a strong "onion flavor" to the biryani (in restaurant style)?
What does an unprocessed RAW file look like?
I have trouble understanding this fallacy: "If A, then B. Therefore if not-B, then not-A."
Is there any danger of my neighbor having my wife's signature?
Does rolling friction increase speed of a wheel?
Can I travel from country A to country B to country C without going back to country A?
Critique vs nitpicking
Fraction within another fraction
How do dictionaries source attestation
How to check if remote-signer is working as expected?
How to batch transactions?How to make an offline transaction?How can I understand why a transaction has failed?How to reactivate an inactive baker?How to create a transactionHow much is a “small, meaningless” transaction?How does the tezos blockchain security model works?Why my endorser did not endorse the block 316956?How do I use RPC to get operation through hashHow to run a baker with ledger (remote signer)
How do i know that remote-signer socket started is working expected and accepting signing requests from my baker server without actually sending a transfer transaction.
Right now i just do a transfer .00005 from to just to test if remote-signer setup is working.
Is there any other way like any transaction that require signing but don't require transfer of tz.
transactions baker remote-signer
add a comment |
How do i know that remote-signer socket started is working expected and accepting signing requests from my baker server without actually sending a transfer transaction.
Right now i just do a transfer .00005 from to just to test if remote-signer setup is working.
Is there any other way like any transaction that require signing but don't require transfer of tz.
transactions baker remote-signer
add a comment |
How do i know that remote-signer socket started is working expected and accepting signing requests from my baker server without actually sending a transfer transaction.
Right now i just do a transfer .00005 from to just to test if remote-signer setup is working.
Is there any other way like any transaction that require signing but don't require transfer of tz.
transactions baker remote-signer
How do i know that remote-signer socket started is working expected and accepting signing requests from my baker server without actually sending a transfer transaction.
Right now i just do a transfer .00005 from to just to test if remote-signer setup is working.
Is there any other way like any transaction that require signing but don't require transfer of tz.
transactions baker remote-signer
transactions baker remote-signer
asked 2 hours ago
Sachin TomarSachin Tomar
456111
456111
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I figure out you can use --dry-run option in transfer statement and 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.
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
add a comment |
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).
https://gitlab.com/obsidian.systems/tezos-bake-monitor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "698"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f591%2fhow-to-check-if-remote-signer-is-working-as-expected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I figure out you can use --dry-run option in transfer statement and 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.
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
add a comment |
I figure out you can use --dry-run option in transfer statement and 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.
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
add a comment |
I figure out you can use --dry-run option in transfer statement and 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.
I figure out you can use --dry-run option in transfer statement and 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.
answered 2 hours ago
Sachin TomarSachin Tomar
456111
456111
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
add a comment |
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
7 mins ago
add a comment |
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).
https://gitlab.com/obsidian.systems/tezos-bake-monitor
add a comment |
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).
https://gitlab.com/obsidian.systems/tezos-bake-monitor
add a comment |
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).
https://gitlab.com/obsidian.systems/tezos-bake-monitor
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).
https://gitlab.com/obsidian.systems/tezos-bake-monitor
answered 16 mins ago
asbjornengeasbjornenge
560111
560111
add a comment |
add a comment |
Thanks for contributing an answer to Tezos Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f591%2fhow-to-check-if-remote-signer-is-working-as-expected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown