@ckb-lumos/ckb-indexer
Advanced tools
Comparing version 0.0.0-canary-a49c050-20230723075710 to 0.0.0-ckb2023-4d2367a-20230803074047
@@ -1,2 +0,2 @@ | ||
import { HexString, HexNumber, Hash, Hexadecimal } from "@ckb-lumos/base"; | ||
import { HexString, HexNumber, Hash, Hexadecimal, HashType } from "@ckb-lumos/base"; | ||
export type Tip = { | ||
@@ -8,3 +8,3 @@ block_hash: HexNumber; | ||
code_hash: HexString; | ||
hash_type: "type" | "data" | "data1"; | ||
hash_type: HashType; | ||
args: HexString; | ||
@@ -11,0 +11,0 @@ }; |
@@ -171,3 +171,5 @@ "use strict"; | ||
transaction: tx.transaction, | ||
txStatus: tx.txStatus | ||
txStatus: tx.txStatus, | ||
cycles: tx.cycles, | ||
timeAddedToPool: tx.timeAddedToPool | ||
})); | ||
@@ -174,0 +176,0 @@ return objects; |
{ | ||
"name": "@ckb-lumos/ckb-indexer", | ||
"version": "0.0.0-canary-a49c050-20230723075710", | ||
"version": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"description": "CKB Indexer", | ||
@@ -22,7 +22,7 @@ "author": "Xuejie Xiao <xxuejie@gmail.com>", | ||
"dependencies": { | ||
"@ckb-lumos/base": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/bi": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/codec": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/rpc": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/toolkit": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/base": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"@ckb-lumos/bi": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"@ckb-lumos/codec": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"@ckb-lumos/rpc": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"@ckb-lumos/toolkit": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"cross-fetch": "^3.1.5", | ||
@@ -32,3 +32,3 @@ "events": "^3.3.0" | ||
"devDependencies": { | ||
"@ckb-lumos/testkit": "0.0.0-canary-a49c050-20230723075710", | ||
"@ckb-lumos/testkit": "0.0.0-ckb2023-4d2367a-20230803074047", | ||
"@types/lodash.uniqby": "^4.7.7", | ||
@@ -35,0 +35,0 @@ "@types/request": "^2.48.8", |
@@ -1,2 +0,8 @@ | ||
import { HexString, HexNumber, Hash, Hexadecimal } from "@ckb-lumos/base"; | ||
import { | ||
HexString, | ||
HexNumber, | ||
Hash, | ||
Hexadecimal, | ||
HashType, | ||
} from "@ckb-lumos/base"; | ||
@@ -9,3 +15,3 @@ export type Tip = { | ||
code_hash: HexString; | ||
hash_type: "type" | "data" | "data1"; | ||
hash_type: HashType; | ||
args: HexString; | ||
@@ -12,0 +18,0 @@ }; |
@@ -176,6 +176,10 @@ import { | ||
); | ||
const objects = filteredTransactionList.map((tx) => ({ | ||
transaction: tx.transaction, | ||
txStatus: tx.txStatus, | ||
})); | ||
const objects = filteredTransactionList.map<TransactionWithStatus>( | ||
(tx) => ({ | ||
transaction: tx.transaction, | ||
txStatus: tx.txStatus, | ||
cycles: tx.cycles, | ||
timeAddedToPool: tx.timeAddedToPool, | ||
}) | ||
); | ||
return objects; | ||
@@ -182,0 +186,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
290392
3840
+ Added@ckb-lumos/base@0.0.0-ckb2023-4d2367a-20230803074047(transitive)
+ Added@ckb-lumos/bi@0.0.0-ckb2023-4d2367a-20230803074047(transitive)
+ Added@ckb-lumos/codec@0.0.0-ckb2023-4d2367a-20230803074047(transitive)
+ Added@ckb-lumos/rpc@0.0.0-ckb2023-4d2367a-20230803074047(transitive)
+ Added@ckb-lumos/toolkit@0.0.0-ckb2023-4d2367a-20230803074047(transitive)
- Removed@ckb-lumos/base@0.0.0-canary-a49c050-20230723075710(transitive)
- Removed@ckb-lumos/bi@0.0.0-canary-a49c050-20230723075710(transitive)
- Removed@ckb-lumos/codec@0.0.0-canary-a49c050-20230723075710(transitive)
- Removed@ckb-lumos/rpc@0.0.0-canary-a49c050-20230723075710(transitive)
- Removed@ckb-lumos/toolkit@0.0.0-canary-a49c050-20230723075710(transitive)
Updated@ckb-lumos/codec@0.0.0-ckb2023-4d2367a-20230803074047
Updated@ckb-lumos/toolkit@0.0.0-ckb2023-4d2367a-20230803074047