-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
891f94d
commit ed79518
Showing
3 changed files
with
11 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ import Decimal from "decimal.js"; | |
import { HistoricalBalance as HistoricalBalanceModel } from "../client"; | ||
import { Asset } from "./asset"; | ||
|
||
/** A representation of a balance. */ | ||
/** A representation of historical balance. */ | ||
export class HistoricalBalance { | ||
public readonly amount: Decimal; | ||
public readonly blockHash: string; | ||
|
@@ -15,6 +15,8 @@ export class HistoricalBalance { | |
* @ignore | ||
* @param {Decimal} amount - The amount of the balance. | ||
* @param {string} assetId - The asset ID. | ||
Check failure on line 17 in src/coinbase/historical_balance.ts GitHub Actions / lint
|
||
* @param {Decimal} blockHeight - The block height at which the balance was recorded. | ||
* @param {string} blockHash - The block hash at which the balance was recorded | ||
* @hideconstructor | ||
*/ | ||
private constructor(amount: Decimal, blockHeight: Decimal, blockHash: string, asset: Asset) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters