How to check if remote-signer is working as expected?How to batch transactions?How to make an offline...
Homeostasis logic/math problem
Is practicing on a digital piano harmful to an experienced piano player?
Taking an academic pseudonym?
Do we still track damage on indestructible creatures?
Smooth projection of a surf plot - tikz/gnuplot
Fraction within another fraction
Coworker asking me to not bring cakes due to self control issue. What should I do?
Is there any good browser plugin or tool to quickly identify any security issues of a web site?
Why do objects rebound after hitting the ground?
Why did Ylvis use "go" instead of "say" in phrases like "Dog goes 'woof'"?
Why write a book when there's a movie in my head?
Renting a 2CV in France
Does rolling friction increase speed of a wheel?
How long has this character been impersonating a Starfleet Officer?
Trying to detect if any checked values contains a specific string
"I showed the monkey himself in the mirror". Why is this sentence grammatical?
If I tried and failed to start my own business, how do I apply for a job without job experience?
How can I differentiate duration vs starting time
How can guns be countered by melee combat without raw-ability or exceptional explanations?
What's the reason that we have a different number of days each month?
Modern Algebraic Geometry and Analytic Number Theory
How to know if I am a 'Real Developer'
Where does documentation like business and software requirement spec docs fit in an agile project?
How resistance converts voltage to current?
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
3 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
3 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
3 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
3 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
3 mins ago
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
3 mins ago
Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
– nurikabe
3 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 12 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