ウォレットがいつ作成されたかを知ることはできますか?
-
-
「ウォレット」と「作成」とはどういう意味ですか?What do you mean by "wallet" and "create"?
- 0
- 2019-04-08
- Tom
-
@Tom `tz1`アドレス(発信されたアカウント)が[作成された](https://tezos.gitlab.io/master/introduction/howtouse.html#originated-accounts-and-contracts).@Tom When a `tz1` address (an originated account) [was created](https://tezos.gitlab.io/master/introduction/howtouse.html#originated-accounts-and-contracts).
- 0
- 2019-04-08
- luchonacho
-
tz1アドレスは発信元のアカウントではありません.tz1アドレスは、新しい秘密鍵を生成することによって作成されます.これは明らかに秘密裏に発生する可能性があるため、いつ発生したかを知ることはできません.明らかにこれはあなたが求めているものではありませんか?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?
- 0
- 2019-04-08
- Tom
-
@トム私は暗黙のアカウントを意味しました.多分私は十分に知りません、そしてこのサイトは私がよりよく理解するのを助けることができますか?多分私は新しい秘密鍵を生成することを意味します.@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.
- 0
- 2019-04-08
- luchonacho
-
1 回答
- 投票
-
- 2019-04-08
私の提案はtzscanAPIを使用することです.
たとえば、一致するものが見つかるまですべてのアクティベーションを確認する
このようなもの:
index = 0 loop while true GET https://api1.tzscan.io/v1/operations?type=Activation&p=${index++}&number=50 compare each item end loop
アクティベーションごとにタイムスタンプがあります
tzscanを使用した正しい方法
以下の
<public_key_hash>
をtz1
アドレスに置き換えます:https://api5.tzscan.io/v1/operations/<public_key_hash>?type=Reveal
つまり、アドレスの例は
です.ここ 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 thetz1
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?
- 0
- 2019-04-08
- luchonacho
-
はい.ただし、古いアクティベーションにアクセスする場合、またはチェーンからすべてをスニッフィングしてデータベースに保存するtzscanが好きな場合は、完全なブロックチェーンのコピーが必要です.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.
- 0
- 2019-04-08
- RoMarQ
ウォレットの作成日を確認することはできますか?もしそうなら、どこ?この情報はブロックチェーンに公に記録されていますか?見つからないようです.たとえば、このランダムアドレス(承認から最近のブロックまで取得)について考えてみます.いつ作成されたかわかりますか?