0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Generate Keys

Last updated at Posted at 2024-11-27

Previous << Funding a Testnet Account
Next >> Decode Public Keys

Flow CLIは、新規または既存のFlowアカウントに付着できるECDSAキーペアを生成するコマンドを提供しています。

flow keys generate

⚠️ 秘密鍵は安全に保管し、共有しないでください!

Example Usage

flow keys generate

Example response

> flow keys generate

🔴️ Store Private Key safely and don't share with anyone! 
Private Key 	 c778170793026a9a7a3815dabed68ded445bde7f40a8c66889908197412be89f 
Public Key 	 584245c57e5316d6606c53b1ce46dae29f5c9bd26e9e8...aaa5091b2eebcb2ac71c75cf70842878878a2d650f7

Flags

Seed

  • Flag: --seed
  • Valid inputs: any string with length >= 32

キーペアを生成する時に使うUTF-8シード文字列を指定します。キー生成は決定論的であるため、同じシードは常に同じキーを生成します。

シードが指定されていなければ、32バイトのランダムなシードを使用してキーペアが生成されます。

⚠️ プロダクションで安全なランダム・ジェネレーターを使用せずに生成されたシードによるキーを使用するのは危険な場合があります。

Signature Algorithm

  • Flag: --sig-algo
  • Valid inputs: "ECDSA_P256", "ECDSA_secp256k1"

キーペアのECDSA署名アルゴリズムを指定します。

Flowはsecp256k1とP-256曲線をサポートしています。

Filter

  • Flag: --filter
  • Short Flag: -x
  • Valid inputs: a case-sensitive name of the result property.

結果から、唯一の値として取得したいプロパティの名前を指定します。

Output

  • Flag: --output
  • Short Flag: -o
  • Valid inputs: json, inline

コマンド結果のフォーマットを指定します。

Save

  • Flag: --save
  • Short Flag: -s
  • Valid inputs: a path in the current filesystem.

結果を保存したいファイル名を指定してください。

Log

  • Flag: --log
  • Short Flag: -l
  • Valid inputs: none, error, debug
  • Default: info

ログレベルを指定します。コマンド実行中に表示する出力を制御します。

Configuration

  • Flag: --config-path
  • Short Flag: -f
  • Valid inputs: a path in the current filesystem.
  • Default: flow.json

flow.json コンフィギュレーションファイルへのパスを指定します。-f フラグを複数回使用して複数のコンフィグレーションファイルをマージすることもできます。

Version Check

  • Flag: --skip-version-check
  • Default: false

低速なネットワーク接続における処理を高速化するために、起動時のバージョンチェックをスキップします。

Last updated on Nov 20, 2024 by Chase Fleming

翻訳元


Previous << Funding a Testnet Account

Flow BlockchainのCadence version1.0ドキュメント (Generate Keys)

Next >> Decode Public Keys

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?