File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { Etching } from './src/etching';
44import { RuneEtchingSpec } from './src/indexer' ;
55import { u128 , u32 , u64 , u8 } from './src/integer' ;
66import { None , Option , Some } from './src/monads' ;
7- import { Rune } from './src/rune' ;
87import { RuneId } from './src/runeid' ;
98import { Runestone , RunestoneTx } from './src/runestone' ;
109import { SpacedRune } from './src/spacedrune' ;
@@ -19,7 +18,7 @@ export {
1918 RuneEtchingSpec ,
2019 RuneLocation ,
2120 RuneMintCount ,
22- RuneOutput ,
21+ RuneSpentUtxoBalance ,
2322 RuneUpdater ,
2423 RuneUtxoBalance ,
2524 RunestoneIndexer ,
@@ -32,8 +31,8 @@ export { Network } from './src/network';
3231export {
3332 BitcoinRpcClient ,
3433 GetBlockParams ,
35- GetBlockhashParams ,
3634 GetBlockReturn ,
35+ GetBlockhashParams ,
3736 GetRawTransactionParams ,
3837 GetRawTransactionReturn ,
3938 RpcResponse ,
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export namespace RuneLocation {
104104 }
105105}
106106
107- export type SpentRuneUtxoBalance = RuneUtxoBalance & { mempoolTxid : string } ;
107+ export type RuneSpentUtxoBalance = RuneUtxoBalance & { mempoolTxid : string } ;
108108
109109export type RuneUtxoBalance = {
110110 txid : string ;
@@ -153,6 +153,6 @@ export type RuneBlockIndex = {
153153 etchings : RuneEtching [ ] ;
154154 mintCounts : RuneMintCount [ ] ;
155155 utxoBalances : RuneUtxoBalance [ ] ;
156- spentBalances : SpentRuneUtxoBalance [ ] ;
156+ spentBalances : RuneSpentUtxoBalance [ ] ;
157157 burnedBalances : RuneBalance [ ] ;
158158} ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import {
2222 RuneMintCount ,
2323 RuneUtxoBalance ,
2424 RunestoneStorage ,
25- SpentRuneUtxoBalance ,
25+ RuneSpentUtxoBalance ,
2626} from './types' ;
2727
2828function isScriptPubKeyHexOpReturn ( scriptPubKeyHex : string ) {
@@ -39,7 +39,7 @@ export class RuneUpdater implements RuneBlockIndex {
3939 block : BlockInfo ;
4040 etchings : RuneEtching [ ] = [ ] ;
4141 utxoBalances : RuneUtxoBalance [ ] = [ ] ;
42- spentBalances : SpentRuneUtxoBalance [ ] = [ ] ;
42+ spentBalances : RuneSpentUtxoBalance [ ] = [ ] ;
4343
4444 private _minimum : Rune ;
4545 private _mintCountsByRuneLocation : Map < string , RuneMintCount > = new Map ( ) ;
You can’t perform that action at this time.
0 commit comments