Can I know when a wallet was created? The 2019 Stack Overflow Developer Survey Results Are...
is usb on wall sockets live all the time with out switches off
Where to refill my bottle in India?
Deadlock Graph and Interpretation, solution to avoid
What is a mixture ratio of propellant?
If the Wish spell is used to duplicate the effect of Simulacrum, are existing duplicates destroyed?
Inflated grade on resume at previous job, might former employer tell new employer?
Access elements in std::string where positon of string is greater than its size
Does a dangling wire really electrocute me if I'm standing in water?
Does it makes sense to buy a new cycle to learn riding?
Is it possible for the two major parties in the UK to form a coalition with each other instead of a much smaller party?
Why don't Unix/Linux systems traverse through directories until they find the required version of a linked library?
Inversion Puzzle
Manuscript was "unsubmitted" because the manuscript was deposited in Arxiv Preprints
Why is it "Tumoren" and not "Tumore"?
Time travel alters history but people keep saying nothing's changed
Which Sci-Fi work first showed weapon of galactic-scale mass destruction?
"Riffle" two strings
Is bread bad for ducks?
What is the use of option -o in the useradd command?
Where does the "burst of radiance" from Holy Weapon originate?
The difference between dialogue marks
What function has this graph?
How to manage monthly salary
What do hard-Brexiteers want with respect to the Irish border?
Can I know when a wallet was created?
The 2019 Stack Overflow Developer Survey Results Are InHow do I confirm my Tezos wallet is up to date; most current version etc.?How to add and transfer from originated accounts in the CLI walletWhat does it mean when someone double bakes or double endorse?How can I use Kukai wallet on alphanet?How do I know my password or backup information is not being shared when creating a new wallet?Why is my faucet wallet on Alphanet not recognized?Is it possible to 'destroy' a wallet?Can I transfer a delegated KTZ account from one TZ1 account to another?Newbie user is confusedHow to create a wallet in Ledger Nano S?
Is it possible to see the creation date of a wallet? If so, where? Is this information publicly recorded in the blockchain? I don't seem to find it. For instance, consider this random address (taken from endorsements to a recent block). Can we know when it was created?
wallets blockchain timestamp
add a comment |
Is it possible to see the creation date of a wallet? If so, where? Is this information publicly recorded in the blockchain? I don't seem to find it. For instance, consider this random address (taken from endorsements to a recent block). Can we know when it was created?
wallets blockchain timestamp
What do you mean by "wallet" and "create"?
– Tom
yesterday
@Tom When atz1address (an originated account) was created.
– luchonacho
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday
add a comment |
Is it possible to see the creation date of a wallet? If so, where? Is this information publicly recorded in the blockchain? I don't seem to find it. For instance, consider this random address (taken from endorsements to a recent block). Can we know when it was created?
wallets blockchain timestamp
Is it possible to see the creation date of a wallet? If so, where? Is this information publicly recorded in the blockchain? I don't seem to find it. For instance, consider this random address (taken from endorsements to a recent block). Can we know when it was created?
wallets blockchain timestamp
wallets blockchain timestamp
asked yesterday
luchonacholuchonacho
549318
549318
What do you mean by "wallet" and "create"?
– Tom
yesterday
@Tom When atz1address (an originated account) was created.
– luchonacho
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday
add a comment |
What do you mean by "wallet" and "create"?
– Tom
yesterday
@Tom When atz1address (an originated account) was created.
– luchonacho
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday
What do you mean by "wallet" and "create"?
– Tom
yesterday
What do you mean by "wallet" and "create"?
– Tom
yesterday
@Tom When a
tz1 address (an originated account) was created.– luchonacho
yesterday
@Tom When a
tz1 address (an originated account) was created.– luchonacho
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday
add a comment |
1 Answer
1
active
oldest
votes
My suggestion would be using tzscan API.
For example checking all activations until you find a match
something like this:
index = 0
loop while true
GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50
compare each item
end loop
It has a timestamp for each activation
Correct way of doing it with tzscan
Replace <public_key_hash> below with the tz1 address:
https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
So, your example address is here
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
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%2f1021%2fcan-i-know-when-a-wallet-was-created%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
My suggestion would be using tzscan API.
For example checking all activations until you find a match
something like this:
index = 0
loop while true
GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50
compare each item
end loop
It has a timestamp for each activation
Correct way of doing it with tzscan
Replace <public_key_hash> below with the tz1 address:
https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
So, your example address is here
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
add a comment |
My suggestion would be using tzscan API.
For example checking all activations until you find a match
something like this:
index = 0
loop while true
GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50
compare each item
end loop
It has a timestamp for each activation
Correct way of doing it with tzscan
Replace <public_key_hash> below with the tz1 address:
https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
So, your example address is here
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
add a comment |
My suggestion would be using tzscan API.
For example checking all activations until you find a match
something like this:
index = 0
loop while true
GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50
compare each item
end loop
It has a timestamp for each activation
Correct way of doing it with tzscan
Replace <public_key_hash> below with the tz1 address:
https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
So, your example address is here
My suggestion would be using tzscan API.
For example checking all activations until you find a match
something like this:
index = 0
loop while true
GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50
compare each item
end loop
It has a timestamp for each activation
Correct way of doing it with tzscan
Replace <public_key_hash> below with the tz1 address:
https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
So, your example address is here
edited 2 hours ago
luchonacho
549318
549318
answered yesterday
RoMarQRoMarQ
4969
4969
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
add a comment |
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
So activation time is the creation date? And is that in the blockchain?
– luchonacho
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
Yes, but you need to have a copy of the full blockchain if you want to access old activations or do like tzscan that sniffs everything from the chain and stores it on a database.
– RoMarQ
yesterday
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%2f1021%2fcan-i-know-when-a-wallet-was-created%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
What do you mean by "wallet" and "create"?
– Tom
yesterday
@Tom When a
tz1address (an originated account) was created.– luchonacho
yesterday
tz1 addresses are not originated accounts. A tz1 address is created by generating a new secret key. This can happen in secret, obviously, and so we can never know when it happened. Clearly this is not what you're asking about?
– Tom
yesterday
@Tom I meant an implicit account. Maybe I do not know enough and this site can help me understanding better? Maybe I do mean generating a new secret key.
– luchonacho
yesterday