353 lines
12 KiB
TypeScript
353 lines
12 KiB
TypeScript
import { getParsedError } from "./getParsedError";
|
|
import { AllowedChainIds } from "./networks";
|
|
import { notification } from "./notification";
|
|
import { MutateOptions } from "@tanstack/react-query";
|
|
import {
|
|
Abi,
|
|
AbiParameter,
|
|
AbiParameterToPrimitiveType,
|
|
AbiParametersToPrimitiveTypes,
|
|
ExtractAbiEvent,
|
|
ExtractAbiEventNames,
|
|
ExtractAbiFunction,
|
|
} from "abitype";
|
|
import type { ExtractAbiFunctionNames } from "abitype";
|
|
import type { Simplify } from "type-fest";
|
|
import type { MergeDeepRecord } from "type-fest/source/merge-deep";
|
|
import {
|
|
Address,
|
|
Block,
|
|
GetEventArgs,
|
|
GetTransactionReceiptReturnType,
|
|
GetTransactionReturnType,
|
|
Log,
|
|
TransactionReceipt,
|
|
WriteContractErrorType,
|
|
} from "viem";
|
|
import { Config, UseReadContractParameters, UseWatchContractEventParameters, UseWriteContractParameters } from "wagmi";
|
|
import { WriteContractParameters, WriteContractReturnType, simulateContract } from "wagmi/actions";
|
|
import { WriteContractVariables } from "wagmi/query";
|
|
import deployedContractsData from "~~/contracts/deployedContracts";
|
|
import externalContractsData from "~~/contracts/externalContracts";
|
|
import scaffoldConfig from "~~/scaffold.config";
|
|
|
|
type AddExternalFlag<T> = {
|
|
[ChainId in keyof T]: {
|
|
[ContractName in keyof T[ChainId]]: T[ChainId][ContractName] & { external?: true };
|
|
};
|
|
};
|
|
|
|
const deepMergeContracts = <L extends Record<PropertyKey, any>, E extends Record<PropertyKey, any>>(
|
|
local: L,
|
|
external: E,
|
|
) => {
|
|
const result: Record<PropertyKey, any> = {};
|
|
const allKeys = Array.from(new Set([...Object.keys(external), ...Object.keys(local)]));
|
|
for (const key of allKeys) {
|
|
if (!external[key]) {
|
|
result[key] = local[key];
|
|
continue;
|
|
}
|
|
const amendedExternal = Object.fromEntries(
|
|
Object.entries(external[key] as Record<string, Record<string, unknown>>).map(([contractName, declaration]) => [
|
|
contractName,
|
|
{ ...declaration, external: true },
|
|
]),
|
|
);
|
|
result[key] = { ...local[key], ...amendedExternal };
|
|
}
|
|
return result as MergeDeepRecord<AddExternalFlag<L>, AddExternalFlag<E>, { arrayMergeMode: "replace" }>;
|
|
};
|
|
|
|
const contractsData = deepMergeContracts(deployedContractsData, externalContractsData);
|
|
|
|
export type InheritedFunctions = { readonly [key: string]: string };
|
|
|
|
export type GenericContract = {
|
|
address: Address;
|
|
abi: Abi;
|
|
inheritedFunctions?: InheritedFunctions;
|
|
external?: true;
|
|
deployedOnBlock?: number;
|
|
};
|
|
|
|
export type GenericContractsDeclaration = {
|
|
[chainId: number]: {
|
|
[contractName: string]: GenericContract;
|
|
};
|
|
};
|
|
|
|
export const contracts = contractsData as GenericContractsDeclaration | null;
|
|
|
|
type ConfiguredChainId = (typeof scaffoldConfig)["targetNetworks"][0]["id"];
|
|
|
|
type IsContractDeclarationMissing<TYes, TNo> = typeof contractsData extends { [key in ConfiguredChainId]: any }
|
|
? TNo
|
|
: TYes;
|
|
|
|
type ContractsDeclaration = IsContractDeclarationMissing<GenericContractsDeclaration, typeof contractsData>;
|
|
|
|
type Contracts = ContractsDeclaration[ConfiguredChainId];
|
|
|
|
export type ContractName = keyof Contracts;
|
|
|
|
export type Contract<TContractName extends ContractName> = Contracts[TContractName];
|
|
|
|
type InferContractAbi<TContract> = TContract extends { abi: infer TAbi } ? TAbi : never;
|
|
|
|
export type ContractAbi<TContractName extends ContractName = ContractName> = InferContractAbi<Contract<TContractName>>;
|
|
|
|
export type AbiFunctionInputs<TAbi extends Abi, TFunctionName extends string> = ExtractAbiFunction<
|
|
TAbi,
|
|
TFunctionName
|
|
>["inputs"];
|
|
|
|
export type AbiFunctionArguments<TAbi extends Abi, TFunctionName extends string> = AbiParametersToPrimitiveTypes<
|
|
AbiFunctionInputs<TAbi, TFunctionName>
|
|
>;
|
|
|
|
export type AbiFunctionOutputs<TAbi extends Abi, TFunctionName extends string> = ExtractAbiFunction<
|
|
TAbi,
|
|
TFunctionName
|
|
>["outputs"];
|
|
|
|
export type AbiFunctionReturnType<TAbi extends Abi, TFunctionName extends string> = IsContractDeclarationMissing<
|
|
any,
|
|
AbiParametersToPrimitiveTypes<AbiFunctionOutputs<TAbi, TFunctionName>> extends readonly [any]
|
|
? AbiParametersToPrimitiveTypes<AbiFunctionOutputs<TAbi, TFunctionName>>[0]
|
|
: AbiParametersToPrimitiveTypes<AbiFunctionOutputs<TAbi, TFunctionName>>
|
|
>;
|
|
|
|
export type AbiEventInputs<TAbi extends Abi, TEventName extends ExtractAbiEventNames<TAbi>> = ExtractAbiEvent<
|
|
TAbi,
|
|
TEventName
|
|
>["inputs"];
|
|
|
|
export enum ContractCodeStatus {
|
|
"LOADING",
|
|
"DEPLOYED",
|
|
"NOT_FOUND",
|
|
}
|
|
|
|
type AbiStateMutability = "pure" | "view" | "nonpayable" | "payable";
|
|
export type ReadAbiStateMutability = "view" | "pure";
|
|
export type WriteAbiStateMutability = "nonpayable" | "payable";
|
|
|
|
export type FunctionNamesWithInputs<
|
|
TContractName extends ContractName,
|
|
TAbiStateMutability extends AbiStateMutability = AbiStateMutability,
|
|
> = Exclude<
|
|
Extract<
|
|
ContractAbi<TContractName>[number],
|
|
{
|
|
type: "function";
|
|
stateMutability: TAbiStateMutability;
|
|
}
|
|
>,
|
|
{
|
|
inputs: readonly [];
|
|
}
|
|
>["name"];
|
|
|
|
type Expand<T> = T extends object ? (T extends infer O ? { [K in keyof O]: O[K] } : never) : T;
|
|
|
|
type UnionToIntersection<U> = Expand<(U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never>;
|
|
|
|
type OptionalTuple<T> = T extends readonly [infer H, ...infer R] ? readonly [H | undefined, ...OptionalTuple<R>] : T;
|
|
|
|
type UseScaffoldArgsParam<
|
|
TContractName extends ContractName,
|
|
TFunctionName extends ExtractAbiFunctionNames<ContractAbi<TContractName>>,
|
|
> =
|
|
TFunctionName extends FunctionNamesWithInputs<TContractName>
|
|
? {
|
|
args: OptionalTuple<UnionToIntersection<AbiFunctionArguments<ContractAbi<TContractName>, TFunctionName>>>;
|
|
value?: ExtractAbiFunction<ContractAbi<TContractName>, TFunctionName>["stateMutability"] extends "payable"
|
|
? bigint | undefined
|
|
: undefined;
|
|
}
|
|
: {
|
|
args?: never;
|
|
};
|
|
|
|
export type UseDeployedContractConfig<TContractName extends ContractName> = {
|
|
contractName: TContractName;
|
|
chainId?: AllowedChainIds;
|
|
};
|
|
|
|
export type UseScaffoldWriteConfig<TContractName extends ContractName> = {
|
|
contractName: TContractName;
|
|
chainId?: AllowedChainIds;
|
|
disableSimulate?: boolean;
|
|
writeContractParams?: UseWriteContractParameters;
|
|
};
|
|
|
|
export type UseScaffoldReadConfig<
|
|
TContractName extends ContractName,
|
|
TFunctionName extends ExtractAbiFunctionNames<ContractAbi<TContractName>, ReadAbiStateMutability>,
|
|
> = {
|
|
contractName: TContractName;
|
|
chainId?: AllowedChainIds;
|
|
watch?: boolean;
|
|
} & IsContractDeclarationMissing<
|
|
Partial<UseReadContractParameters>,
|
|
{
|
|
functionName: TFunctionName;
|
|
} & UseScaffoldArgsParam<TContractName, TFunctionName> &
|
|
Omit<UseReadContractParameters, "chainId" | "abi" | "address" | "functionName" | "args">
|
|
>;
|
|
|
|
export type ScaffoldWriteContractVariables<
|
|
TContractName extends ContractName,
|
|
TFunctionName extends ExtractAbiFunctionNames<ContractAbi<TContractName>, WriteAbiStateMutability>,
|
|
> = IsContractDeclarationMissing<
|
|
Partial<WriteContractParameters>,
|
|
{
|
|
functionName: TFunctionName;
|
|
} & UseScaffoldArgsParam<TContractName, TFunctionName> &
|
|
Omit<WriteContractParameters, "chainId" | "abi" | "address" | "functionName" | "args">
|
|
>;
|
|
|
|
type WriteVariables = WriteContractVariables<Abi, string, any[], Config, number>;
|
|
|
|
export type TransactorFuncOptions = {
|
|
onBlockConfirmation?: (txnReceipt: TransactionReceipt) => void;
|
|
blockConfirmations?: number;
|
|
};
|
|
|
|
export type ScaffoldWriteContractOptions = MutateOptions<
|
|
WriteContractReturnType,
|
|
WriteContractErrorType,
|
|
WriteVariables,
|
|
unknown
|
|
> &
|
|
TransactorFuncOptions;
|
|
|
|
export type UseScaffoldEventConfig<
|
|
TContractName extends ContractName,
|
|
TEventName extends ExtractAbiEventNames<ContractAbi<TContractName>>,
|
|
TEvent extends ExtractAbiEvent<ContractAbi<TContractName>, TEventName> = ExtractAbiEvent<
|
|
ContractAbi<TContractName>,
|
|
TEventName
|
|
>,
|
|
> = {
|
|
contractName: TContractName;
|
|
eventName: TEventName;
|
|
chainId?: AllowedChainIds;
|
|
} & IsContractDeclarationMissing<
|
|
Omit<UseWatchContractEventParameters, "onLogs" | "address" | "abi" | "eventName"> & {
|
|
onLogs: (
|
|
logs: Simplify<
|
|
Omit<Log<bigint, number, any>, "args" | "eventName"> & {
|
|
args: Record<string, unknown>;
|
|
eventName: string;
|
|
}
|
|
>[],
|
|
) => void;
|
|
},
|
|
Omit<UseWatchContractEventParameters<ContractAbi<TContractName>>, "onLogs" | "address" | "abi" | "eventName"> & {
|
|
onLogs: (
|
|
logs: Simplify<
|
|
Omit<Log<bigint, number, false, TEvent, false, [TEvent], TEventName>, "args"> & {
|
|
args: AbiParametersToPrimitiveTypes<TEvent["inputs"]> &
|
|
GetEventArgs<
|
|
ContractAbi<TContractName>,
|
|
TEventName,
|
|
{
|
|
IndexedOnly: false;
|
|
}
|
|
>;
|
|
}
|
|
>[],
|
|
) => void;
|
|
}
|
|
>;
|
|
|
|
type IndexedEventInputs<
|
|
TContractName extends ContractName,
|
|
TEventName extends ExtractAbiEventNames<ContractAbi<TContractName>>,
|
|
> = Extract<AbiEventInputs<ContractAbi<TContractName>, TEventName>[number], { indexed: true }>;
|
|
|
|
export type EventFilters<
|
|
TContractName extends ContractName,
|
|
TEventName extends ExtractAbiEventNames<ContractAbi<TContractName>>,
|
|
> = IsContractDeclarationMissing<
|
|
any,
|
|
IndexedEventInputs<TContractName, TEventName> extends never
|
|
? never
|
|
: {
|
|
[Key in IsContractDeclarationMissing<
|
|
any,
|
|
IndexedEventInputs<TContractName, TEventName>["name"]
|
|
>]?: AbiParameterToPrimitiveType<Extract<IndexedEventInputs<TContractName, TEventName>, { name: Key }>>;
|
|
}
|
|
>;
|
|
|
|
export type UseScaffoldEventHistoryConfig<
|
|
TContractName extends ContractName,
|
|
TEventName extends ExtractAbiEventNames<ContractAbi<TContractName>>,
|
|
TBlockData extends boolean = false,
|
|
TTransactionData extends boolean = false,
|
|
TReceiptData extends boolean = false,
|
|
> = {
|
|
contractName: TContractName;
|
|
eventName: IsContractDeclarationMissing<string, TEventName>;
|
|
fromBlock?: bigint;
|
|
toBlock?: bigint;
|
|
chainId?: AllowedChainIds;
|
|
filters?: EventFilters<TContractName, TEventName>;
|
|
blockData?: TBlockData;
|
|
transactionData?: TTransactionData;
|
|
receiptData?: TReceiptData;
|
|
watch?: boolean;
|
|
enabled?: boolean;
|
|
blocksBatchSize?: number;
|
|
};
|
|
|
|
export type UseScaffoldEventHistoryData<
|
|
TContractName extends ContractName,
|
|
TEventName extends ExtractAbiEventNames<ContractAbi<TContractName>>,
|
|
TBlockData extends boolean = false,
|
|
TTransactionData extends boolean = false,
|
|
TReceiptData extends boolean = false,
|
|
TEvent extends ExtractAbiEvent<ContractAbi<TContractName>, TEventName> = ExtractAbiEvent<
|
|
ContractAbi<TContractName>,
|
|
TEventName
|
|
>,
|
|
> =
|
|
| IsContractDeclarationMissing<
|
|
any[],
|
|
{
|
|
args: AbiParametersToPrimitiveTypes<TEvent["inputs"]> &
|
|
GetEventArgs<
|
|
ContractAbi<TContractName>,
|
|
TEventName,
|
|
{
|
|
IndexedOnly: false;
|
|
}
|
|
>;
|
|
blockData: TBlockData extends true ? Block<bigint, true> : null;
|
|
receiptData: TReceiptData extends true ? GetTransactionReturnType : null;
|
|
transactionData: TTransactionData extends true ? GetTransactionReceiptReturnType : null;
|
|
} & Log<bigint, number, false, TEvent, false, [TEvent], TEventName>[]
|
|
>
|
|
| undefined;
|
|
|
|
export type AbiParameterTuple = Extract<AbiParameter, { type: "tuple" | `tuple[${string}]` }>;
|
|
|
|
export const simulateContractWriteAndNotifyError = async ({
|
|
wagmiConfig,
|
|
writeContractParams: params,
|
|
}: {
|
|
wagmiConfig: Config;
|
|
writeContractParams: WriteContractVariables<Abi, string, any[], Config, number>;
|
|
}) => {
|
|
try {
|
|
await simulateContract(wagmiConfig, params);
|
|
} catch (error) {
|
|
const parsedError = getParsedError(error);
|
|
notification.error(parsedError);
|
|
throw error;
|
|
}
|
|
};
|