@ensnode/datasources 1.16.0 → 1.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -6496,6 +6496,9 @@ declare const DatasourceNames: {
6496
6496
  readonly ReverseResolverArbitrum: "rrArbitrum";
6497
6497
  readonly ReverseResolverScroll: "rrScroll";
6498
6498
  readonly ENSv2Root: "ENSv2Root";
6499
+ readonly EFPBase: "efpBase";
6500
+ readonly EFPOptimism: "efpOptimism";
6501
+ readonly EFPEthereum: "efpEthereum";
6499
6502
  };
6500
6503
  type DatasourceName = (typeof DatasourceNames)[keyof typeof DatasourceNames];
6501
6504
  /**
@@ -28384,6 +28387,348 @@ declare const _default$3: {
28384
28387
  };
28385
28388
  };
28386
28389
  };
28390
+ /**
28391
+ * EFP Datasources
28392
+ *
28393
+ * The Ethereum Follow Protocol contracts, deployed onto the ens-test-env devnet by the EFP devnet
28394
+ * image (attach mode) on top of the ENS deployment. On the `mainnet` namespace EFP spans Base,
28395
+ * Optimism, and Ethereum; the single-chain devnet has only one EFP deployment, so all three EFP
28396
+ * datasources resolve to `ensTestEnvChain` (id 31337) with the same `ListRecords` contract.
28397
+ *
28398
+ * The EFP plugin's Ponder config keys each contract by chain id, so the three datasources collapse
28399
+ * to a single set of contracts on chain 31337 (no double-indexing). This relies on the
28400
+ * `ListRecords` address being IDENTICAL across all three datasources below — if they diverge, the
28401
+ * per-chain-id merge silently keeps only `EFPEthereum`'s.
28402
+ *
28403
+ * @see docker/services/efp-devnet.yml for how these contracts are deployed and addresses captured.
28404
+ */
28405
+ efpBase: {
28406
+ chain: {
28407
+ readonly id: 31337;
28408
+ readonly name: "ens-test-env";
28409
+ readonly blockExplorers?: {
28410
+ [key: string]: {
28411
+ name: string;
28412
+ url: string;
28413
+ apiUrl?: string | undefined;
28414
+ };
28415
+ default: {
28416
+ name: string;
28417
+ url: string;
28418
+ apiUrl?: string | undefined;
28419
+ };
28420
+ } | undefined | undefined;
28421
+ readonly blockTime?: number | undefined | undefined;
28422
+ readonly contracts?: {
28423
+ [x: string]: viem.ChainContract | {
28424
+ [sourceId: number]: viem.ChainContract | undefined;
28425
+ } | undefined;
28426
+ ensRegistry?: viem.ChainContract | undefined;
28427
+ ensUniversalResolver?: viem.ChainContract | undefined;
28428
+ multicall3?: viem.ChainContract | undefined;
28429
+ erc6492Verifier?: viem.ChainContract | undefined;
28430
+ } | undefined;
28431
+ readonly ensTlds?: readonly string[] | undefined;
28432
+ readonly nativeCurrency: {
28433
+ readonly decimals: 18;
28434
+ readonly name: "Ether";
28435
+ readonly symbol: "ETH";
28436
+ };
28437
+ readonly experimental_preconfirmationTime?: number | undefined | undefined;
28438
+ readonly rpcUrls: {
28439
+ readonly default: {
28440
+ readonly http: readonly ["http://127.0.0.1:8545"];
28441
+ readonly webSocket: readonly ["ws://127.0.0.1:8545"];
28442
+ };
28443
+ };
28444
+ readonly sourceId?: number | undefined | undefined;
28445
+ readonly testnet?: boolean | undefined | undefined;
28446
+ readonly custom?: Record<string, unknown> | undefined;
28447
+ readonly extendSchema?: Record<string, unknown> | undefined;
28448
+ readonly fees?: viem.ChainFees<undefined> | undefined;
28449
+ readonly formatters?: undefined;
28450
+ readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
28451
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28452
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
28453
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28454
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
28455
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
28456
+ }] | undefined;
28457
+ readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
28458
+ readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
28459
+ };
28460
+ contracts: {
28461
+ ListRegistry: {
28462
+ abi: readonly [{
28463
+ readonly type: "event";
28464
+ readonly name: "Transfer";
28465
+ readonly inputs: readonly [{
28466
+ readonly indexed: true;
28467
+ readonly name: "from";
28468
+ readonly type: "address";
28469
+ }, {
28470
+ readonly indexed: true;
28471
+ readonly name: "to";
28472
+ readonly type: "address";
28473
+ }, {
28474
+ readonly indexed: true;
28475
+ readonly name: "tokenId";
28476
+ readonly type: "uint256";
28477
+ }];
28478
+ }, {
28479
+ readonly type: "event";
28480
+ readonly name: "UpdateListStorageLocation";
28481
+ readonly inputs: readonly [{
28482
+ readonly indexed: true;
28483
+ readonly name: "tokenId";
28484
+ readonly type: "uint256";
28485
+ }, {
28486
+ readonly indexed: false;
28487
+ readonly name: "listStorageLocation";
28488
+ readonly type: "bytes";
28489
+ }];
28490
+ }];
28491
+ address: "0xf8e31cb472bc70500f08cd84917e5a1912ec8397";
28492
+ startBlock: number;
28493
+ };
28494
+ AccountMetadata: {
28495
+ abi: readonly [{
28496
+ readonly type: "event";
28497
+ readonly name: "UpdateAccountMetadata";
28498
+ readonly inputs: readonly [{
28499
+ readonly indexed: true;
28500
+ readonly name: "addr";
28501
+ readonly type: "address";
28502
+ }, {
28503
+ readonly indexed: false;
28504
+ readonly name: "key";
28505
+ readonly type: "string";
28506
+ }, {
28507
+ readonly indexed: false;
28508
+ readonly name: "value";
28509
+ readonly type: "bytes";
28510
+ }];
28511
+ }];
28512
+ address: "0xd5ac451b0c50b9476107823af206ed814a2e2580";
28513
+ startBlock: number;
28514
+ };
28515
+ ListRecords: {
28516
+ abi: readonly [{
28517
+ readonly type: "event";
28518
+ readonly name: "ListOp";
28519
+ readonly inputs: readonly [{
28520
+ readonly indexed: true;
28521
+ readonly name: "slot";
28522
+ readonly type: "uint256";
28523
+ }, {
28524
+ readonly indexed: false;
28525
+ readonly name: "op";
28526
+ readonly type: "bytes";
28527
+ }];
28528
+ }, {
28529
+ readonly type: "event";
28530
+ readonly name: "UpdateListMetadata";
28531
+ readonly inputs: readonly [{
28532
+ readonly indexed: true;
28533
+ readonly name: "slot";
28534
+ readonly type: "uint256";
28535
+ }, {
28536
+ readonly indexed: false;
28537
+ readonly name: "key";
28538
+ readonly type: "string";
28539
+ }, {
28540
+ readonly indexed: false;
28541
+ readonly name: "value";
28542
+ readonly type: "bytes";
28543
+ }];
28544
+ }];
28545
+ address: "0xc0f115a19107322cfbf1cdbc7ea011c19ebdb4f8";
28546
+ startBlock: number;
28547
+ };
28548
+ };
28549
+ };
28550
+ efpOptimism: {
28551
+ chain: {
28552
+ readonly id: 31337;
28553
+ readonly name: "ens-test-env";
28554
+ readonly blockExplorers?: {
28555
+ [key: string]: {
28556
+ name: string;
28557
+ url: string;
28558
+ apiUrl?: string | undefined;
28559
+ };
28560
+ default: {
28561
+ name: string;
28562
+ url: string;
28563
+ apiUrl?: string | undefined;
28564
+ };
28565
+ } | undefined | undefined;
28566
+ readonly blockTime?: number | undefined | undefined;
28567
+ readonly contracts?: {
28568
+ [x: string]: viem.ChainContract | {
28569
+ [sourceId: number]: viem.ChainContract | undefined;
28570
+ } | undefined;
28571
+ ensRegistry?: viem.ChainContract | undefined;
28572
+ ensUniversalResolver?: viem.ChainContract | undefined;
28573
+ multicall3?: viem.ChainContract | undefined;
28574
+ erc6492Verifier?: viem.ChainContract | undefined;
28575
+ } | undefined;
28576
+ readonly ensTlds?: readonly string[] | undefined;
28577
+ readonly nativeCurrency: {
28578
+ readonly decimals: 18;
28579
+ readonly name: "Ether";
28580
+ readonly symbol: "ETH";
28581
+ };
28582
+ readonly experimental_preconfirmationTime?: number | undefined | undefined;
28583
+ readonly rpcUrls: {
28584
+ readonly default: {
28585
+ readonly http: readonly ["http://127.0.0.1:8545"];
28586
+ readonly webSocket: readonly ["ws://127.0.0.1:8545"];
28587
+ };
28588
+ };
28589
+ readonly sourceId?: number | undefined | undefined;
28590
+ readonly testnet?: boolean | undefined | undefined;
28591
+ readonly custom?: Record<string, unknown> | undefined;
28592
+ readonly extendSchema?: Record<string, unknown> | undefined;
28593
+ readonly fees?: viem.ChainFees<undefined> | undefined;
28594
+ readonly formatters?: undefined;
28595
+ readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
28596
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28597
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
28598
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28599
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
28600
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
28601
+ }] | undefined;
28602
+ readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
28603
+ readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
28604
+ };
28605
+ contracts: {
28606
+ ListRecords: {
28607
+ abi: readonly [{
28608
+ readonly type: "event";
28609
+ readonly name: "ListOp";
28610
+ readonly inputs: readonly [{
28611
+ readonly indexed: true;
28612
+ readonly name: "slot";
28613
+ readonly type: "uint256";
28614
+ }, {
28615
+ readonly indexed: false;
28616
+ readonly name: "op";
28617
+ readonly type: "bytes";
28618
+ }];
28619
+ }, {
28620
+ readonly type: "event";
28621
+ readonly name: "UpdateListMetadata";
28622
+ readonly inputs: readonly [{
28623
+ readonly indexed: true;
28624
+ readonly name: "slot";
28625
+ readonly type: "uint256";
28626
+ }, {
28627
+ readonly indexed: false;
28628
+ readonly name: "key";
28629
+ readonly type: "string";
28630
+ }, {
28631
+ readonly indexed: false;
28632
+ readonly name: "value";
28633
+ readonly type: "bytes";
28634
+ }];
28635
+ }];
28636
+ address: "0xc0f115a19107322cfbf1cdbc7ea011c19ebdb4f8";
28637
+ startBlock: number;
28638
+ };
28639
+ };
28640
+ };
28641
+ efpEthereum: {
28642
+ chain: {
28643
+ readonly id: 31337;
28644
+ readonly name: "ens-test-env";
28645
+ readonly blockExplorers?: {
28646
+ [key: string]: {
28647
+ name: string;
28648
+ url: string;
28649
+ apiUrl?: string | undefined;
28650
+ };
28651
+ default: {
28652
+ name: string;
28653
+ url: string;
28654
+ apiUrl?: string | undefined;
28655
+ };
28656
+ } | undefined | undefined;
28657
+ readonly blockTime?: number | undefined | undefined;
28658
+ readonly contracts?: {
28659
+ [x: string]: viem.ChainContract | {
28660
+ [sourceId: number]: viem.ChainContract | undefined;
28661
+ } | undefined;
28662
+ ensRegistry?: viem.ChainContract | undefined;
28663
+ ensUniversalResolver?: viem.ChainContract | undefined;
28664
+ multicall3?: viem.ChainContract | undefined;
28665
+ erc6492Verifier?: viem.ChainContract | undefined;
28666
+ } | undefined;
28667
+ readonly ensTlds?: readonly string[] | undefined;
28668
+ readonly nativeCurrency: {
28669
+ readonly decimals: 18;
28670
+ readonly name: "Ether";
28671
+ readonly symbol: "ETH";
28672
+ };
28673
+ readonly experimental_preconfirmationTime?: number | undefined | undefined;
28674
+ readonly rpcUrls: {
28675
+ readonly default: {
28676
+ readonly http: readonly ["http://127.0.0.1:8545"];
28677
+ readonly webSocket: readonly ["ws://127.0.0.1:8545"];
28678
+ };
28679
+ };
28680
+ readonly sourceId?: number | undefined | undefined;
28681
+ readonly testnet?: boolean | undefined | undefined;
28682
+ readonly custom?: Record<string, unknown> | undefined;
28683
+ readonly extendSchema?: Record<string, unknown> | undefined;
28684
+ readonly fees?: viem.ChainFees<undefined> | undefined;
28685
+ readonly formatters?: undefined;
28686
+ readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
28687
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28688
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
28689
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
28690
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
28691
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
28692
+ }] | undefined;
28693
+ readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
28694
+ readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
28695
+ };
28696
+ contracts: {
28697
+ ListRecords: {
28698
+ abi: readonly [{
28699
+ readonly type: "event";
28700
+ readonly name: "ListOp";
28701
+ readonly inputs: readonly [{
28702
+ readonly indexed: true;
28703
+ readonly name: "slot";
28704
+ readonly type: "uint256";
28705
+ }, {
28706
+ readonly indexed: false;
28707
+ readonly name: "op";
28708
+ readonly type: "bytes";
28709
+ }];
28710
+ }, {
28711
+ readonly type: "event";
28712
+ readonly name: "UpdateListMetadata";
28713
+ readonly inputs: readonly [{
28714
+ readonly indexed: true;
28715
+ readonly name: "slot";
28716
+ readonly type: "uint256";
28717
+ }, {
28718
+ readonly indexed: false;
28719
+ readonly name: "key";
28720
+ readonly type: "string";
28721
+ }, {
28722
+ readonly indexed: false;
28723
+ readonly name: "value";
28724
+ readonly type: "bytes";
28725
+ }];
28726
+ }];
28727
+ address: "0xc0f115a19107322cfbf1cdbc7ea011c19ebdb4f8";
28728
+ startBlock: number;
28729
+ };
28730
+ };
28731
+ };
28387
28732
  };
28388
28733
 
28389
28734
  /**
@@ -74448,6 +74793,882 @@ declare const _default$2: {
74448
74793
  };
74449
74794
  };
74450
74795
  };
74796
+ /**
74797
+ * EFP (Ethereum Follow Protocol) Datasource on Base.
74798
+ *
74799
+ * The `ListRegistry` (list NFTs) and `AccountMetadata` contracts are deployed only on Base.
74800
+ * The `ListRecords` contract is also deployed on Base (one of the three "list storage location"
74801
+ * chains a list NFT may point at via `UpdateListStorageLocation`).
74802
+ *
74803
+ * Every address below is cross-checked against the official EFP deployments,
74804
+ * https://docs.efp.app/production/deployments/ (and ethereumfollowprotocol/api-v2).
74805
+ */
74806
+ efpBase: {
74807
+ chain: {
74808
+ blockExplorers: {
74809
+ readonly default: {
74810
+ readonly name: "Basescan";
74811
+ readonly url: "https://basescan.org";
74812
+ readonly apiUrl: "https://api.basescan.org/api";
74813
+ };
74814
+ };
74815
+ blockTime: 2000;
74816
+ contracts: {
74817
+ readonly disputeGameFactory: {
74818
+ readonly 1: {
74819
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
74820
+ };
74821
+ };
74822
+ readonly l2OutputOracle: {
74823
+ readonly 1: {
74824
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
74825
+ };
74826
+ };
74827
+ readonly multicall3: {
74828
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
74829
+ readonly blockCreated: 5022;
74830
+ };
74831
+ readonly portal: {
74832
+ readonly 1: {
74833
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
74834
+ readonly blockCreated: 17482143;
74835
+ };
74836
+ };
74837
+ readonly l1StandardBridge: {
74838
+ readonly 1: {
74839
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
74840
+ readonly blockCreated: 17482143;
74841
+ };
74842
+ };
74843
+ readonly gasPriceOracle: {
74844
+ readonly address: "0x420000000000000000000000000000000000000F";
74845
+ };
74846
+ readonly l1Block: {
74847
+ readonly address: "0x4200000000000000000000000000000000000015";
74848
+ };
74849
+ readonly l2CrossDomainMessenger: {
74850
+ readonly address: "0x4200000000000000000000000000000000000007";
74851
+ };
74852
+ readonly l2Erc721Bridge: {
74853
+ readonly address: "0x4200000000000000000000000000000000000014";
74854
+ };
74855
+ readonly l2StandardBridge: {
74856
+ readonly address: "0x4200000000000000000000000000000000000010";
74857
+ };
74858
+ readonly l2ToL1MessagePasser: {
74859
+ readonly address: "0x4200000000000000000000000000000000000016";
74860
+ };
74861
+ };
74862
+ ensTlds?: readonly string[] | undefined;
74863
+ id: 8453;
74864
+ name: "Base";
74865
+ nativeCurrency: {
74866
+ readonly name: "Ether";
74867
+ readonly symbol: "ETH";
74868
+ readonly decimals: 18;
74869
+ };
74870
+ experimental_preconfirmationTime?: number | undefined | undefined;
74871
+ rpcUrls: {
74872
+ readonly default: {
74873
+ readonly http: readonly ["https://mainnet.base.org"];
74874
+ };
74875
+ };
74876
+ sourceId: 1;
74877
+ testnet?: boolean | undefined | undefined;
74878
+ custom?: Record<string, unknown> | undefined;
74879
+ extendSchema?: Record<string, unknown> | undefined;
74880
+ fees?: viem.ChainFees<undefined> | undefined;
74881
+ formatters: {
74882
+ readonly block: {
74883
+ exclude: [] | undefined;
74884
+ format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
74885
+ baseFeePerGas: bigint | null;
74886
+ blobGasUsed: bigint;
74887
+ difficulty: bigint;
74888
+ excessBlobGas: bigint;
74889
+ extraData: viem.Hex;
74890
+ gasLimit: bigint;
74891
+ gasUsed: bigint;
74892
+ hash: `0x${string}` | null;
74893
+ logsBloom: `0x${string}` | null;
74894
+ miner: viem.Address;
74895
+ mixHash: viem.Hash;
74896
+ nonce: `0x${string}` | null;
74897
+ number: bigint | null;
74898
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
74899
+ parentHash: viem.Hash;
74900
+ receiptsRoot: viem.Hex;
74901
+ sealFields: viem.Hex[];
74902
+ sha3Uncles: viem.Hash;
74903
+ size: bigint;
74904
+ stateRoot: viem.Hash;
74905
+ timestamp: bigint;
74906
+ totalDifficulty: bigint | null;
74907
+ transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
74908
+ transactionsRoot: viem.Hash;
74909
+ uncles: viem.Hash[];
74910
+ withdrawals?: viem.Withdrawal[] | undefined | undefined;
74911
+ withdrawalsRoot?: `0x${string}` | undefined;
74912
+ } & {};
74913
+ type: "block";
74914
+ };
74915
+ readonly transaction: {
74916
+ exclude: [] | undefined;
74917
+ format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
74918
+ blockHash: `0x${string}` | null;
74919
+ blockNumber: bigint | null;
74920
+ blockTimestamp?: bigint | undefined;
74921
+ from: viem.Address;
74922
+ gas: bigint;
74923
+ hash: viem.Hash;
74924
+ input: viem.Hex;
74925
+ nonce: number;
74926
+ r: viem.Hex;
74927
+ s: viem.Hex;
74928
+ to: viem.Address | null;
74929
+ transactionIndex: number | null;
74930
+ typeHex: viem.Hex | null;
74931
+ v: bigint;
74932
+ value: bigint;
74933
+ yParity: number;
74934
+ gasPrice?: undefined | undefined;
74935
+ maxFeePerBlobGas?: undefined | undefined;
74936
+ maxFeePerGas: bigint;
74937
+ maxPriorityFeePerGas: bigint;
74938
+ isSystemTx?: boolean;
74939
+ mint?: bigint | undefined | undefined;
74940
+ sourceHash: viem.Hex;
74941
+ type: "deposit";
74942
+ } | {
74943
+ r: viem.Hex;
74944
+ s: viem.Hex;
74945
+ v: bigint;
74946
+ to: viem.Address | null;
74947
+ from: viem.Address;
74948
+ gas: bigint;
74949
+ nonce: number;
74950
+ value: bigint;
74951
+ blockHash: `0x${string}` | null;
74952
+ blockNumber: bigint | null;
74953
+ blockTimestamp?: bigint | undefined;
74954
+ hash: viem.Hash;
74955
+ input: viem.Hex;
74956
+ transactionIndex: number | null;
74957
+ typeHex: viem.Hex | null;
74958
+ accessList?: undefined | undefined;
74959
+ authorizationList?: undefined | undefined;
74960
+ blobVersionedHashes?: undefined | undefined;
74961
+ chainId?: number | undefined;
74962
+ yParity?: undefined | undefined;
74963
+ type: "legacy";
74964
+ gasPrice: bigint;
74965
+ maxFeePerBlobGas?: undefined | undefined;
74966
+ maxFeePerGas?: undefined | undefined;
74967
+ maxPriorityFeePerGas?: undefined | undefined;
74968
+ isSystemTx?: undefined | undefined;
74969
+ mint?: undefined | undefined;
74970
+ sourceHash?: undefined | undefined;
74971
+ } | {
74972
+ blockHash: `0x${string}` | null;
74973
+ blockNumber: bigint | null;
74974
+ blockTimestamp?: bigint | undefined;
74975
+ from: viem.Address;
74976
+ gas: bigint;
74977
+ hash: viem.Hash;
74978
+ input: viem.Hex;
74979
+ nonce: number;
74980
+ r: viem.Hex;
74981
+ s: viem.Hex;
74982
+ to: viem.Address | null;
74983
+ transactionIndex: number | null;
74984
+ typeHex: viem.Hex | null;
74985
+ v: bigint;
74986
+ value: bigint;
74987
+ yParity: number;
74988
+ accessList: viem.AccessList;
74989
+ authorizationList?: undefined | undefined;
74990
+ blobVersionedHashes?: undefined | undefined;
74991
+ chainId: number;
74992
+ type: "eip2930";
74993
+ gasPrice: bigint;
74994
+ maxFeePerBlobGas?: undefined | undefined;
74995
+ maxFeePerGas?: undefined | undefined;
74996
+ maxPriorityFeePerGas?: undefined | undefined;
74997
+ isSystemTx?: undefined | undefined;
74998
+ mint?: undefined | undefined;
74999
+ sourceHash?: undefined | undefined;
75000
+ } | {
75001
+ blockHash: `0x${string}` | null;
75002
+ blockNumber: bigint | null;
75003
+ blockTimestamp?: bigint | undefined;
75004
+ from: viem.Address;
75005
+ gas: bigint;
75006
+ hash: viem.Hash;
75007
+ input: viem.Hex;
75008
+ nonce: number;
75009
+ r: viem.Hex;
75010
+ s: viem.Hex;
75011
+ to: viem.Address | null;
75012
+ transactionIndex: number | null;
75013
+ typeHex: viem.Hex | null;
75014
+ v: bigint;
75015
+ value: bigint;
75016
+ yParity: number;
75017
+ accessList: viem.AccessList;
75018
+ authorizationList?: undefined | undefined;
75019
+ blobVersionedHashes?: undefined | undefined;
75020
+ chainId: number;
75021
+ type: "eip1559";
75022
+ gasPrice?: undefined | undefined;
75023
+ maxFeePerBlobGas?: undefined | undefined;
75024
+ maxFeePerGas: bigint;
75025
+ maxPriorityFeePerGas: bigint;
75026
+ isSystemTx?: undefined | undefined;
75027
+ mint?: undefined | undefined;
75028
+ sourceHash?: undefined | undefined;
75029
+ } | {
75030
+ blockHash: `0x${string}` | null;
75031
+ blockNumber: bigint | null;
75032
+ blockTimestamp?: bigint | undefined;
75033
+ from: viem.Address;
75034
+ gas: bigint;
75035
+ hash: viem.Hash;
75036
+ input: viem.Hex;
75037
+ nonce: number;
75038
+ r: viem.Hex;
75039
+ s: viem.Hex;
75040
+ to: viem.Address | null;
75041
+ transactionIndex: number | null;
75042
+ typeHex: viem.Hex | null;
75043
+ v: bigint;
75044
+ value: bigint;
75045
+ yParity: number;
75046
+ accessList: viem.AccessList;
75047
+ authorizationList?: undefined | undefined;
75048
+ blobVersionedHashes: readonly viem.Hex[];
75049
+ chainId: number;
75050
+ type: "eip4844";
75051
+ gasPrice?: undefined | undefined;
75052
+ maxFeePerBlobGas: bigint;
75053
+ maxFeePerGas: bigint;
75054
+ maxPriorityFeePerGas: bigint;
75055
+ isSystemTx?: undefined | undefined;
75056
+ mint?: undefined | undefined;
75057
+ sourceHash?: undefined | undefined;
75058
+ } | {
75059
+ blockHash: `0x${string}` | null;
75060
+ blockNumber: bigint | null;
75061
+ blockTimestamp?: bigint | undefined;
75062
+ from: viem.Address;
75063
+ gas: bigint;
75064
+ hash: viem.Hash;
75065
+ input: viem.Hex;
75066
+ nonce: number;
75067
+ r: viem.Hex;
75068
+ s: viem.Hex;
75069
+ to: viem.Address | null;
75070
+ transactionIndex: number | null;
75071
+ typeHex: viem.Hex | null;
75072
+ v: bigint;
75073
+ value: bigint;
75074
+ yParity: number;
75075
+ accessList: viem.AccessList;
75076
+ authorizationList: viem.SignedAuthorizationList;
75077
+ blobVersionedHashes?: undefined | undefined;
75078
+ chainId: number;
75079
+ type: "eip7702";
75080
+ gasPrice?: undefined | undefined;
75081
+ maxFeePerBlobGas?: undefined | undefined;
75082
+ maxFeePerGas: bigint;
75083
+ maxPriorityFeePerGas: bigint;
75084
+ isSystemTx?: undefined | undefined;
75085
+ mint?: undefined | undefined;
75086
+ sourceHash?: undefined | undefined;
75087
+ }) & {};
75088
+ type: "transaction";
75089
+ };
75090
+ readonly transactionReceipt: {
75091
+ exclude: [] | undefined;
75092
+ format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
75093
+ blobGasPrice?: bigint | undefined;
75094
+ blobGasUsed?: bigint | undefined;
75095
+ blockHash: viem.Hash;
75096
+ blockNumber: bigint;
75097
+ blockTimestamp?: bigint | undefined;
75098
+ contractAddress: viem.Address | null | undefined;
75099
+ cumulativeGasUsed: bigint;
75100
+ effectiveGasPrice: bigint;
75101
+ from: viem.Address;
75102
+ gasUsed: bigint;
75103
+ logs: viem.Log<bigint, number, false>[];
75104
+ logsBloom: viem.Hex;
75105
+ root?: `0x${string}` | undefined;
75106
+ status: "success" | "reverted";
75107
+ to: viem.Address | null;
75108
+ transactionHash: viem.Hash;
75109
+ transactionIndex: number;
75110
+ type: viem.TransactionType;
75111
+ l1GasPrice: bigint | null;
75112
+ l1GasUsed: bigint | null;
75113
+ l1Fee: bigint | null;
75114
+ l1FeeScalar: number | null;
75115
+ } & {};
75116
+ type: "transactionReceipt";
75117
+ };
75118
+ };
75119
+ prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
75120
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75121
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
75122
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75123
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
75124
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
75125
+ }] | undefined;
75126
+ serializers: {
75127
+ readonly transaction: typeof viem_chains.serializeTransactionOpStack;
75128
+ };
75129
+ verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
75130
+ };
75131
+ contracts: {
75132
+ ListRegistry: {
75133
+ abi: readonly [{
75134
+ readonly type: "event";
75135
+ readonly name: "Transfer";
75136
+ readonly inputs: readonly [{
75137
+ readonly indexed: true;
75138
+ readonly name: "from";
75139
+ readonly type: "address";
75140
+ }, {
75141
+ readonly indexed: true;
75142
+ readonly name: "to";
75143
+ readonly type: "address";
75144
+ }, {
75145
+ readonly indexed: true;
75146
+ readonly name: "tokenId";
75147
+ readonly type: "uint256";
75148
+ }];
75149
+ }, {
75150
+ readonly type: "event";
75151
+ readonly name: "UpdateListStorageLocation";
75152
+ readonly inputs: readonly [{
75153
+ readonly indexed: true;
75154
+ readonly name: "tokenId";
75155
+ readonly type: "uint256";
75156
+ }, {
75157
+ readonly indexed: false;
75158
+ readonly name: "listStorageLocation";
75159
+ readonly type: "bytes";
75160
+ }];
75161
+ }];
75162
+ address: "0x0e688f5dca4a0a4729946acbc44c792341714e08";
75163
+ startBlock: number;
75164
+ };
75165
+ AccountMetadata: {
75166
+ abi: readonly [{
75167
+ readonly type: "event";
75168
+ readonly name: "UpdateAccountMetadata";
75169
+ readonly inputs: readonly [{
75170
+ readonly indexed: true;
75171
+ readonly name: "addr";
75172
+ readonly type: "address";
75173
+ }, {
75174
+ readonly indexed: false;
75175
+ readonly name: "key";
75176
+ readonly type: "string";
75177
+ }, {
75178
+ readonly indexed: false;
75179
+ readonly name: "value";
75180
+ readonly type: "bytes";
75181
+ }];
75182
+ }];
75183
+ address: "0x5289fe5dabc021d02fddf23d4a4df96f4e0f17ef";
75184
+ startBlock: number;
75185
+ };
75186
+ ListRecords: {
75187
+ abi: readonly [{
75188
+ readonly type: "event";
75189
+ readonly name: "ListOp";
75190
+ readonly inputs: readonly [{
75191
+ readonly indexed: true;
75192
+ readonly name: "slot";
75193
+ readonly type: "uint256";
75194
+ }, {
75195
+ readonly indexed: false;
75196
+ readonly name: "op";
75197
+ readonly type: "bytes";
75198
+ }];
75199
+ }, {
75200
+ readonly type: "event";
75201
+ readonly name: "UpdateListMetadata";
75202
+ readonly inputs: readonly [{
75203
+ readonly indexed: true;
75204
+ readonly name: "slot";
75205
+ readonly type: "uint256";
75206
+ }, {
75207
+ readonly indexed: false;
75208
+ readonly name: "key";
75209
+ readonly type: "string";
75210
+ }, {
75211
+ readonly indexed: false;
75212
+ readonly name: "value";
75213
+ readonly type: "bytes";
75214
+ }];
75215
+ }];
75216
+ address: "0x41aa48ef3c0446b46a5b1cc6337ff3d3716e2a33";
75217
+ startBlock: number;
75218
+ };
75219
+ };
75220
+ };
75221
+ /**
75222
+ * EFP `ListRecords` Datasource on Optimism.
75223
+ */
75224
+ efpOptimism: {
75225
+ chain: {
75226
+ blockExplorers: {
75227
+ readonly default: {
75228
+ readonly name: "Optimism Explorer";
75229
+ readonly url: "https://optimistic.etherscan.io";
75230
+ readonly apiUrl: "https://api-optimistic.etherscan.io/api";
75231
+ };
75232
+ };
75233
+ blockTime: 2000;
75234
+ contracts: {
75235
+ readonly disputeGameFactory: {
75236
+ readonly 1: {
75237
+ readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
75238
+ };
75239
+ };
75240
+ readonly l2OutputOracle: {
75241
+ readonly 1: {
75242
+ readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
75243
+ };
75244
+ };
75245
+ readonly multicall3: {
75246
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
75247
+ readonly blockCreated: 4286263;
75248
+ };
75249
+ readonly portal: {
75250
+ readonly 1: {
75251
+ readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
75252
+ };
75253
+ };
75254
+ readonly l1StandardBridge: {
75255
+ readonly 1: {
75256
+ readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
75257
+ };
75258
+ };
75259
+ readonly gasPriceOracle: {
75260
+ readonly address: "0x420000000000000000000000000000000000000F";
75261
+ };
75262
+ readonly l1Block: {
75263
+ readonly address: "0x4200000000000000000000000000000000000015";
75264
+ };
75265
+ readonly l2CrossDomainMessenger: {
75266
+ readonly address: "0x4200000000000000000000000000000000000007";
75267
+ };
75268
+ readonly l2Erc721Bridge: {
75269
+ readonly address: "0x4200000000000000000000000000000000000014";
75270
+ };
75271
+ readonly l2StandardBridge: {
75272
+ readonly address: "0x4200000000000000000000000000000000000010";
75273
+ };
75274
+ readonly l2ToL1MessagePasser: {
75275
+ readonly address: "0x4200000000000000000000000000000000000016";
75276
+ };
75277
+ };
75278
+ ensTlds?: readonly string[] | undefined;
75279
+ id: 10;
75280
+ name: "OP Mainnet";
75281
+ nativeCurrency: {
75282
+ readonly name: "Ether";
75283
+ readonly symbol: "ETH";
75284
+ readonly decimals: 18;
75285
+ };
75286
+ experimental_preconfirmationTime?: number | undefined | undefined;
75287
+ rpcUrls: {
75288
+ readonly default: {
75289
+ readonly http: readonly ["https://mainnet.optimism.io"];
75290
+ };
75291
+ };
75292
+ sourceId: 1;
75293
+ testnet?: boolean | undefined | undefined;
75294
+ custom?: Record<string, unknown> | undefined;
75295
+ extendSchema?: Record<string, unknown> | undefined;
75296
+ fees?: viem.ChainFees<undefined> | undefined;
75297
+ formatters: {
75298
+ readonly block: {
75299
+ exclude: [] | undefined;
75300
+ format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
75301
+ baseFeePerGas: bigint | null;
75302
+ blobGasUsed: bigint;
75303
+ difficulty: bigint;
75304
+ excessBlobGas: bigint;
75305
+ extraData: viem.Hex;
75306
+ gasLimit: bigint;
75307
+ gasUsed: bigint;
75308
+ hash: `0x${string}` | null;
75309
+ logsBloom: `0x${string}` | null;
75310
+ miner: viem.Address;
75311
+ mixHash: viem.Hash;
75312
+ nonce: `0x${string}` | null;
75313
+ number: bigint | null;
75314
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
75315
+ parentHash: viem.Hash;
75316
+ receiptsRoot: viem.Hex;
75317
+ sealFields: viem.Hex[];
75318
+ sha3Uncles: viem.Hash;
75319
+ size: bigint;
75320
+ stateRoot: viem.Hash;
75321
+ timestamp: bigint;
75322
+ totalDifficulty: bigint | null;
75323
+ transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
75324
+ transactionsRoot: viem.Hash;
75325
+ uncles: viem.Hash[];
75326
+ withdrawals?: viem.Withdrawal[] | undefined | undefined;
75327
+ withdrawalsRoot?: `0x${string}` | undefined;
75328
+ } & {};
75329
+ type: "block";
75330
+ };
75331
+ readonly transaction: {
75332
+ exclude: [] | undefined;
75333
+ format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
75334
+ blockHash: `0x${string}` | null;
75335
+ blockNumber: bigint | null;
75336
+ blockTimestamp?: bigint | undefined;
75337
+ from: viem.Address;
75338
+ gas: bigint;
75339
+ hash: viem.Hash;
75340
+ input: viem.Hex;
75341
+ nonce: number;
75342
+ r: viem.Hex;
75343
+ s: viem.Hex;
75344
+ to: viem.Address | null;
75345
+ transactionIndex: number | null;
75346
+ typeHex: viem.Hex | null;
75347
+ v: bigint;
75348
+ value: bigint;
75349
+ yParity: number;
75350
+ gasPrice?: undefined | undefined;
75351
+ maxFeePerBlobGas?: undefined | undefined;
75352
+ maxFeePerGas: bigint;
75353
+ maxPriorityFeePerGas: bigint;
75354
+ isSystemTx?: boolean;
75355
+ mint?: bigint | undefined | undefined;
75356
+ sourceHash: viem.Hex;
75357
+ type: "deposit";
75358
+ } | {
75359
+ r: viem.Hex;
75360
+ s: viem.Hex;
75361
+ v: bigint;
75362
+ to: viem.Address | null;
75363
+ from: viem.Address;
75364
+ gas: bigint;
75365
+ nonce: number;
75366
+ value: bigint;
75367
+ blockHash: `0x${string}` | null;
75368
+ blockNumber: bigint | null;
75369
+ blockTimestamp?: bigint | undefined;
75370
+ hash: viem.Hash;
75371
+ input: viem.Hex;
75372
+ transactionIndex: number | null;
75373
+ typeHex: viem.Hex | null;
75374
+ accessList?: undefined | undefined;
75375
+ authorizationList?: undefined | undefined;
75376
+ blobVersionedHashes?: undefined | undefined;
75377
+ chainId?: number | undefined;
75378
+ yParity?: undefined | undefined;
75379
+ type: "legacy";
75380
+ gasPrice: bigint;
75381
+ maxFeePerBlobGas?: undefined | undefined;
75382
+ maxFeePerGas?: undefined | undefined;
75383
+ maxPriorityFeePerGas?: undefined | undefined;
75384
+ isSystemTx?: undefined | undefined;
75385
+ mint?: undefined | undefined;
75386
+ sourceHash?: undefined | undefined;
75387
+ } | {
75388
+ blockHash: `0x${string}` | null;
75389
+ blockNumber: bigint | null;
75390
+ blockTimestamp?: bigint | undefined;
75391
+ from: viem.Address;
75392
+ gas: bigint;
75393
+ hash: viem.Hash;
75394
+ input: viem.Hex;
75395
+ nonce: number;
75396
+ r: viem.Hex;
75397
+ s: viem.Hex;
75398
+ to: viem.Address | null;
75399
+ transactionIndex: number | null;
75400
+ typeHex: viem.Hex | null;
75401
+ v: bigint;
75402
+ value: bigint;
75403
+ yParity: number;
75404
+ accessList: viem.AccessList;
75405
+ authorizationList?: undefined | undefined;
75406
+ blobVersionedHashes?: undefined | undefined;
75407
+ chainId: number;
75408
+ type: "eip2930";
75409
+ gasPrice: bigint;
75410
+ maxFeePerBlobGas?: undefined | undefined;
75411
+ maxFeePerGas?: undefined | undefined;
75412
+ maxPriorityFeePerGas?: undefined | undefined;
75413
+ isSystemTx?: undefined | undefined;
75414
+ mint?: undefined | undefined;
75415
+ sourceHash?: undefined | undefined;
75416
+ } | {
75417
+ blockHash: `0x${string}` | null;
75418
+ blockNumber: bigint | null;
75419
+ blockTimestamp?: bigint | undefined;
75420
+ from: viem.Address;
75421
+ gas: bigint;
75422
+ hash: viem.Hash;
75423
+ input: viem.Hex;
75424
+ nonce: number;
75425
+ r: viem.Hex;
75426
+ s: viem.Hex;
75427
+ to: viem.Address | null;
75428
+ transactionIndex: number | null;
75429
+ typeHex: viem.Hex | null;
75430
+ v: bigint;
75431
+ value: bigint;
75432
+ yParity: number;
75433
+ accessList: viem.AccessList;
75434
+ authorizationList?: undefined | undefined;
75435
+ blobVersionedHashes?: undefined | undefined;
75436
+ chainId: number;
75437
+ type: "eip1559";
75438
+ gasPrice?: undefined | undefined;
75439
+ maxFeePerBlobGas?: undefined | undefined;
75440
+ maxFeePerGas: bigint;
75441
+ maxPriorityFeePerGas: bigint;
75442
+ isSystemTx?: undefined | undefined;
75443
+ mint?: undefined | undefined;
75444
+ sourceHash?: undefined | undefined;
75445
+ } | {
75446
+ blockHash: `0x${string}` | null;
75447
+ blockNumber: bigint | null;
75448
+ blockTimestamp?: bigint | undefined;
75449
+ from: viem.Address;
75450
+ gas: bigint;
75451
+ hash: viem.Hash;
75452
+ input: viem.Hex;
75453
+ nonce: number;
75454
+ r: viem.Hex;
75455
+ s: viem.Hex;
75456
+ to: viem.Address | null;
75457
+ transactionIndex: number | null;
75458
+ typeHex: viem.Hex | null;
75459
+ v: bigint;
75460
+ value: bigint;
75461
+ yParity: number;
75462
+ accessList: viem.AccessList;
75463
+ authorizationList?: undefined | undefined;
75464
+ blobVersionedHashes: readonly viem.Hex[];
75465
+ chainId: number;
75466
+ type: "eip4844";
75467
+ gasPrice?: undefined | undefined;
75468
+ maxFeePerBlobGas: bigint;
75469
+ maxFeePerGas: bigint;
75470
+ maxPriorityFeePerGas: bigint;
75471
+ isSystemTx?: undefined | undefined;
75472
+ mint?: undefined | undefined;
75473
+ sourceHash?: undefined | undefined;
75474
+ } | {
75475
+ blockHash: `0x${string}` | null;
75476
+ blockNumber: bigint | null;
75477
+ blockTimestamp?: bigint | undefined;
75478
+ from: viem.Address;
75479
+ gas: bigint;
75480
+ hash: viem.Hash;
75481
+ input: viem.Hex;
75482
+ nonce: number;
75483
+ r: viem.Hex;
75484
+ s: viem.Hex;
75485
+ to: viem.Address | null;
75486
+ transactionIndex: number | null;
75487
+ typeHex: viem.Hex | null;
75488
+ v: bigint;
75489
+ value: bigint;
75490
+ yParity: number;
75491
+ accessList: viem.AccessList;
75492
+ authorizationList: viem.SignedAuthorizationList;
75493
+ blobVersionedHashes?: undefined | undefined;
75494
+ chainId: number;
75495
+ type: "eip7702";
75496
+ gasPrice?: undefined | undefined;
75497
+ maxFeePerBlobGas?: undefined | undefined;
75498
+ maxFeePerGas: bigint;
75499
+ maxPriorityFeePerGas: bigint;
75500
+ isSystemTx?: undefined | undefined;
75501
+ mint?: undefined | undefined;
75502
+ sourceHash?: undefined | undefined;
75503
+ }) & {};
75504
+ type: "transaction";
75505
+ };
75506
+ readonly transactionReceipt: {
75507
+ exclude: [] | undefined;
75508
+ format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
75509
+ blobGasPrice?: bigint | undefined;
75510
+ blobGasUsed?: bigint | undefined;
75511
+ blockHash: viem.Hash;
75512
+ blockNumber: bigint;
75513
+ blockTimestamp?: bigint | undefined;
75514
+ contractAddress: viem.Address | null | undefined;
75515
+ cumulativeGasUsed: bigint;
75516
+ effectiveGasPrice: bigint;
75517
+ from: viem.Address;
75518
+ gasUsed: bigint;
75519
+ logs: viem.Log<bigint, number, false>[];
75520
+ logsBloom: viem.Hex;
75521
+ root?: `0x${string}` | undefined;
75522
+ status: "success" | "reverted";
75523
+ to: viem.Address | null;
75524
+ transactionHash: viem.Hash;
75525
+ transactionIndex: number;
75526
+ type: viem.TransactionType;
75527
+ l1GasPrice: bigint | null;
75528
+ l1GasUsed: bigint | null;
75529
+ l1Fee: bigint | null;
75530
+ l1FeeScalar: number | null;
75531
+ } & {};
75532
+ type: "transactionReceipt";
75533
+ };
75534
+ };
75535
+ prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
75536
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75537
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
75538
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75539
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
75540
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
75541
+ }] | undefined;
75542
+ serializers: {
75543
+ readonly transaction: typeof viem_chains.serializeTransactionOpStack;
75544
+ };
75545
+ verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
75546
+ };
75547
+ contracts: {
75548
+ ListRecords: {
75549
+ abi: readonly [{
75550
+ readonly type: "event";
75551
+ readonly name: "ListOp";
75552
+ readonly inputs: readonly [{
75553
+ readonly indexed: true;
75554
+ readonly name: "slot";
75555
+ readonly type: "uint256";
75556
+ }, {
75557
+ readonly indexed: false;
75558
+ readonly name: "op";
75559
+ readonly type: "bytes";
75560
+ }];
75561
+ }, {
75562
+ readonly type: "event";
75563
+ readonly name: "UpdateListMetadata";
75564
+ readonly inputs: readonly [{
75565
+ readonly indexed: true;
75566
+ readonly name: "slot";
75567
+ readonly type: "uint256";
75568
+ }, {
75569
+ readonly indexed: false;
75570
+ readonly name: "key";
75571
+ readonly type: "string";
75572
+ }, {
75573
+ readonly indexed: false;
75574
+ readonly name: "value";
75575
+ readonly type: "bytes";
75576
+ }];
75577
+ }];
75578
+ address: "0x4ca00413d850dcfa3516e14d21dae2772f2acb85";
75579
+ startBlock: number;
75580
+ };
75581
+ };
75582
+ };
75583
+ /**
75584
+ * EFP `ListRecords` Datasource on Ethereum mainnet.
75585
+ */
75586
+ efpEthereum: {
75587
+ chain: {
75588
+ blockExplorers: {
75589
+ readonly default: {
75590
+ readonly name: "Etherscan";
75591
+ readonly url: "https://etherscan.io";
75592
+ readonly apiUrl: "https://api.etherscan.io/api";
75593
+ };
75594
+ };
75595
+ blockTime: 12000;
75596
+ contracts: {
75597
+ readonly ensUniversalResolver: {
75598
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
75599
+ readonly blockCreated: 23085558;
75600
+ };
75601
+ readonly multicall3: {
75602
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
75603
+ readonly blockCreated: 14353601;
75604
+ };
75605
+ };
75606
+ ensTlds?: readonly string[] | undefined;
75607
+ id: 1;
75608
+ name: "Ethereum";
75609
+ nativeCurrency: {
75610
+ readonly name: "Ether";
75611
+ readonly symbol: "ETH";
75612
+ readonly decimals: 18;
75613
+ };
75614
+ experimental_preconfirmationTime?: number | undefined | undefined;
75615
+ rpcUrls: {
75616
+ readonly default: {
75617
+ readonly http: readonly ["https://eth.merkle.io"];
75618
+ };
75619
+ };
75620
+ sourceId?: number | undefined | undefined;
75621
+ testnet?: boolean | undefined | undefined;
75622
+ custom?: Record<string, unknown> | undefined;
75623
+ extendSchema?: Record<string, unknown> | undefined;
75624
+ fees?: viem.ChainFees<undefined> | undefined;
75625
+ formatters?: undefined;
75626
+ prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
75627
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75628
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
75629
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
75630
+ }) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
75631
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
75632
+ }] | undefined;
75633
+ serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
75634
+ verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
75635
+ };
75636
+ contracts: {
75637
+ ListRecords: {
75638
+ abi: readonly [{
75639
+ readonly type: "event";
75640
+ readonly name: "ListOp";
75641
+ readonly inputs: readonly [{
75642
+ readonly indexed: true;
75643
+ readonly name: "slot";
75644
+ readonly type: "uint256";
75645
+ }, {
75646
+ readonly indexed: false;
75647
+ readonly name: "op";
75648
+ readonly type: "bytes";
75649
+ }];
75650
+ }, {
75651
+ readonly type: "event";
75652
+ readonly name: "UpdateListMetadata";
75653
+ readonly inputs: readonly [{
75654
+ readonly indexed: true;
75655
+ readonly name: "slot";
75656
+ readonly type: "uint256";
75657
+ }, {
75658
+ readonly indexed: false;
75659
+ readonly name: "key";
75660
+ readonly type: "string";
75661
+ }, {
75662
+ readonly indexed: false;
75663
+ readonly name: "value";
75664
+ readonly type: "bytes";
75665
+ }];
75666
+ }];
75667
+ address: "0x5289fe5dabc021d02fddf23d4a4df96f4e0f17ef";
75668
+ startBlock: number;
75669
+ };
75670
+ };
75671
+ };
74451
75672
  };
74452
75673
 
74453
75674
  /**
@@ -117101,7 +118322,7 @@ declare const _default: {
117101
118322
  readonly type: "bytes[]";
117102
118323
  }];
117103
118324
  }];
117104
- address: "0x651d670ce0d0f1ed0893f39d51fd0dbd4546c9ef";
118325
+ address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
117105
118326
  startBlock: number;
117106
118327
  };
117107
118328
  };
@@ -121017,7 +122238,7 @@ declare const _default: {
121017
122238
  readonly internalType: "address";
121018
122239
  }];
121019
122240
  }];
121020
- address: "0x835f0b284e78cd3f358bcf6cba3b53809f09b79e";
122241
+ address: "0xc960f7217d3643b525ef36bec8adf86953cd9ab8";
121021
122242
  startBlock: number;
121022
122243
  };
121023
122244
  ETHRegistry: {
@@ -122215,7 +123436,7 @@ declare const _default: {
122215
123436
  readonly internalType: "address";
122216
123437
  }];
122217
123438
  }];
122218
- address: "0x64c81210d0e580cfc7746f3fb910bf0e8f6378e1";
123439
+ address: "0xdedb92913a25abe1f7bcdd85d8a344a43b398b67";
122219
123440
  startBlock: number;
122220
123441
  };
122221
123442
  ETHRegistrar: {
@@ -122876,7 +124097,7 @@ declare const _default: {
122876
124097
  readonly stateMutability: "nonpayable";
122877
124098
  readonly type: "function";
122878
124099
  }];
122879
- address: "0xb68e594a47fe057bd31e7a8229ffcfd85b2e28af";
124100
+ address: "0x8c2e866b439358c41ae05de9cbe8a00bfefaffca";
122880
124101
  startBlock: number;
122881
124102
  };
122882
124103
  };
@@ -124103,7 +125324,7 @@ declare const _default: {
124103
125324
  readonly stateMutability: "view";
124104
125325
  readonly type: "function";
124105
125326
  }];
124106
- address: "0xb441cb480460eb8b2964dcb82b64a883b14abf3e";
125327
+ address: "0x5239a812ec9a62f46dbb5de8f346c8efe7553a9f";
124107
125328
  startBlock: number;
124108
125329
  };
124109
125330
  BaseReverseResolver: {