Run prettier

This commit is contained in:
JulianMerlo 2023-12-11 16:46:17 -03:00
parent 91bb844d2f
commit e11ff63bd6
4 changed files with 4 additions and 3 deletions

View File

@ -14,6 +14,7 @@ import {
} from ".";
import { HttpClient } from "../rpc/http/HttpClient";
import { JobRepository } from "../../domain/repositories";
import { ArbitrumEvmJsonRPCBlockRepository } from "./evm/ArbitrumEvmJsonRPCBlockRepository";
const SOLANA_CHAIN = "solana";
const EVM_CHAIN = "evm";

View File

@ -150,4 +150,4 @@ type BlockByNumberResult = {
transactions: string[];
transactionsRoot: string;
uncles: string[];
};
};

View File

@ -173,4 +173,4 @@ type PersistedBlock = {
l2BlockNumber: number;
};
const blockHash = (blockNumber: bigint) => `0x${blockNumber.toString(16)}`;
const blockHash = (blockNumber: bigint) => `0x${blockNumber.toString(16)}`;

View File

@ -66,4 +66,4 @@ const givenBlockHeightIs = (height: bigint, commitment: EvmTag) => {
});
};
const blockHash = (blockNumber: bigint) => `0x${blockNumber.toString(16)}`;
const blockHash = (blockNumber: bigint) => `0x${blockNumber.toString(16)}`;