-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #287 from TrueBlocks/develop
Update to use version v0.44.0 of trueblocks-core
- Loading branch information
Showing
18 changed files
with
82 additions
and
44 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
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
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
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 |
---|---|---|
@@ -1,37 +1,45 @@ | ||
import { blknum, timestamp, address, uint64, int256, double } from "../types"; | ||
import { blknum, hash, timestamp, Datetime, address, uint64, double, int256 } from "../types"; | ||
|
||
export type Reconciliation = { | ||
blockNumber: blknum | ||
transactionIndex: blknum | ||
logIndex: blknum | ||
transactionHash: hash | ||
timestamp: timestamp | ||
date: Datetime | ||
assetAddr: address | ||
assetSymbol: string | ||
decimals: uint64 | ||
prevBlk: blknum | ||
prevBlkBal: int256 | ||
spotPrice: double | ||
priceSource: string | ||
accountedFor: address | ||
sender: address | ||
recipient: address | ||
begBal: int256 | ||
begBalDiff: int256 | ||
amountNet: int256 | ||
endBal: int256 | ||
encoding: string | ||
signature: string | ||
reconciliationType: string | ||
reconciled: boolean | ||
totalIn: int256 | ||
amountIn: int256 | ||
amountOut: int256 | ||
internalIn: int256 | ||
internalOut: int256 | ||
selfDestructIn: int256 | ||
selfDestructOut: int256 | ||
minerBaseRewardIn: int256 | ||
minerNephewRewardIn: int256 | ||
minerTxFeeIn: int256 | ||
minerUncleRewardIn: int256 | ||
prefundIn: int256 | ||
spotPrice: double | ||
priceSource: string | ||
gasCostOut: int256 | ||
endBal: int256 | ||
totalIn: int256 | ||
totalOut: int256 | ||
amountOut: int256 | ||
internalOut: int256 | ||
selfDestructOut: int256 | ||
gasOut: int256 | ||
totalOutLessGas: int256 | ||
amountNet: int256 | ||
endBalCalc: int256 | ||
reconciliationType: string | ||
prevAppBlk: blknum | ||
prevBal: int256 | ||
begBalDiff: int256 | ||
endBalDiff: int256 | ||
reconciled: boolean | ||
endBalCalc: int256 | ||
} |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import { blknum, wei, uint64, bytes, address } from "../types"; | ||
import { blknum, address, wei, uint64, bytes } from "../types"; | ||
|
||
export type State = { | ||
blockNumber: blknum | ||
address: address | ||
proxy: address | ||
balance: wei | ||
nonce: uint64 | ||
code: bytes | ||
storage: bytes | ||
address: address | ||
deployed: blknum | ||
accttype: string | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { blknum, hash, timestamp, Datetime, address, uint64, uint256, double } from "../types"; | ||
|
||
export type Transfer = { | ||
blockNumber: blknum | ||
transactionIndex: blknum | ||
logIndex: blknum | ||
transactionHash: hash | ||
timestamp: timestamp | ||
date: Datetime | ||
sender: address | ||
recipient: address | ||
assetAddr: address | ||
assetSymbol: string | ||
decimals: uint64 | ||
amount: uint256 | ||
spotPrice: double | ||
priceSource: string | ||
encoding: string | ||
} |
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
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
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
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