當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript StrKey.decodeEd25519SecretSeed方法代碼示例

本文整理匯總了TypeScript中stellar-sdk.StrKey.decodeEd25519SecretSeed方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript StrKey.decodeEd25519SecretSeed方法的具體用法?TypeScript StrKey.decodeEd25519SecretSeed怎麽用?TypeScript StrKey.decodeEd25519SecretSeed使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在stellar-sdk.StrKey的用法示例。


在下文中一共展示了StrKey.decodeEd25519SecretSeed方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: co

 return co(function *() {
   // The wallet will have 3 keychains on it, usually 2 of those are generated by the platform, and 1 is generated by the user.
   // Initially, we need a root prv to generate the account, which has to be distinct from all three keychains on the wallet.
   // If a root prv is not provided, we generate a random one.
   let seed;
   const rootPrv = walletParams.rootPrivateKey;
   if (rootPrv) {
     if (!this.isValidPrv(rootPrv)) {
       throw new Error('rootPrivateKey needs to be valid ed25519 secret seed');
     }
     seed = stellar.StrKey.decodeEd25519SecretSeed(rootPrv);
   }
   const keyPair = this.generateKeyPair(seed);
   // extend the wallet initialization params
   walletParams.rootPrivateKey = keyPair.prv;
   return walletParams;
 }).call(this);
開發者ID:BitGo,項目名稱:BitGoJS,代碼行數:17,代碼來源:xlm.ts


注:本文中的stellar-sdk.StrKey.decodeEd25519SecretSeed方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。