File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function encodeSecp256k1Pubkey(pubkey: Uint8Array): Secp256k1Pubkey {
2828}
2929
3030/**
31- * Takes an Edd25519 public key as raw bytes and returns the Amino JSON
31+ * Takes an Ed25519 public key as raw bytes and returns the Amino JSON
3232 * representation of it (the type/value wrapper object).
3333 */
3434export function encodeEd25519Pubkey ( pubkey : Uint8Array ) : Ed25519Pubkey {
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner {
250250 private readonly secret : EnglishMnemonic ;
251251 /** BIP39 seed */
252252 private readonly seed : Uint8Array ;
253- /** Derivation instruction */
253+ /** Derivation instructions */
254254 private readonly accounts : readonly DerivationInfo [ ] ;
255255
256256 protected constructor ( mnemonic : EnglishMnemonic , options : Secp256k1HdWalletConstructorOptions ) {
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export class Faucet {
9595 await this . send ( job ) ;
9696 }
9797
98- /** Returns a list to token denoms which are configured */
98+ /** Returns a list of token denoms which are configured */
9999 public configuredTokens ( ) : string [ ] {
100100 return Array . from ( this . tokenConfig . bankTokens ) ;
101101 }
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ export class Decimal {
182182 * This allows you to perform arithmetic operations given two decimals
183183 * with different fractional digits by normalizing them.
184184 *
185- * When new fractional digis is smaller than the original value, the amount
185+ * When new fractional digits is smaller than the original value, the amount
186186 * is truncated (not rounded!).
187187 */
188188 public adjustFractionalDigits ( newFractionalDigits : number ) : Decimal {
You can’t perform that action at this time.
0 commit comments