@ensnode/datasources 1.13.1 → 1.15.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/devnet/index.d.ts +181 -0
- package/dist/devnet/index.js +110 -0
- package/dist/devnet/index.js.map +1 -0
- package/dist/index.d.ts +897 -61
- package/dist/index.js +778 -44
- package/dist/index.js.map +1 -1
- package/package.json +14 -7
package/dist/index.d.ts
CHANGED
|
@@ -2414,6 +2414,503 @@ declare const Registry: readonly [{
|
|
|
2414
2414
|
}];
|
|
2415
2415
|
}];
|
|
2416
2416
|
|
|
2417
|
+
declare const L2ReverseRegistrar: readonly [{
|
|
2418
|
+
readonly type: "constructor";
|
|
2419
|
+
readonly inputs: readonly [{
|
|
2420
|
+
readonly name: "chainId";
|
|
2421
|
+
readonly type: "uint256";
|
|
2422
|
+
readonly internalType: "uint256";
|
|
2423
|
+
}, {
|
|
2424
|
+
readonly name: "label";
|
|
2425
|
+
readonly type: "string";
|
|
2426
|
+
readonly internalType: "string";
|
|
2427
|
+
}];
|
|
2428
|
+
readonly stateMutability: "nonpayable";
|
|
2429
|
+
}, {
|
|
2430
|
+
readonly type: "function";
|
|
2431
|
+
readonly name: "CHAIN_ID";
|
|
2432
|
+
readonly inputs: readonly [];
|
|
2433
|
+
readonly outputs: readonly [{
|
|
2434
|
+
readonly name: "";
|
|
2435
|
+
readonly type: "uint256";
|
|
2436
|
+
readonly internalType: "uint256";
|
|
2437
|
+
}];
|
|
2438
|
+
readonly stateMutability: "view";
|
|
2439
|
+
}, {
|
|
2440
|
+
readonly type: "function";
|
|
2441
|
+
readonly name: "PARENT_NODE";
|
|
2442
|
+
readonly inputs: readonly [];
|
|
2443
|
+
readonly outputs: readonly [{
|
|
2444
|
+
readonly name: "";
|
|
2445
|
+
readonly type: "bytes32";
|
|
2446
|
+
readonly internalType: "bytes32";
|
|
2447
|
+
}];
|
|
2448
|
+
readonly stateMutability: "view";
|
|
2449
|
+
}, {
|
|
2450
|
+
readonly type: "function";
|
|
2451
|
+
readonly name: "inceptionOf";
|
|
2452
|
+
readonly inputs: readonly [{
|
|
2453
|
+
readonly name: "addr";
|
|
2454
|
+
readonly type: "address";
|
|
2455
|
+
readonly internalType: "address";
|
|
2456
|
+
}];
|
|
2457
|
+
readonly outputs: readonly [{
|
|
2458
|
+
readonly name: "inception";
|
|
2459
|
+
readonly type: "uint256";
|
|
2460
|
+
readonly internalType: "uint256";
|
|
2461
|
+
}];
|
|
2462
|
+
readonly stateMutability: "view";
|
|
2463
|
+
}, {
|
|
2464
|
+
readonly type: "function";
|
|
2465
|
+
readonly name: "name";
|
|
2466
|
+
readonly inputs: readonly [{
|
|
2467
|
+
readonly name: "node";
|
|
2468
|
+
readonly type: "bytes32";
|
|
2469
|
+
readonly internalType: "bytes32";
|
|
2470
|
+
}];
|
|
2471
|
+
readonly outputs: readonly [{
|
|
2472
|
+
readonly name: "";
|
|
2473
|
+
readonly type: "string";
|
|
2474
|
+
readonly internalType: "string";
|
|
2475
|
+
}];
|
|
2476
|
+
readonly stateMutability: "view";
|
|
2477
|
+
}, {
|
|
2478
|
+
readonly type: "function";
|
|
2479
|
+
readonly name: "nameForAddr";
|
|
2480
|
+
readonly inputs: readonly [{
|
|
2481
|
+
readonly name: "addr";
|
|
2482
|
+
readonly type: "address";
|
|
2483
|
+
readonly internalType: "address";
|
|
2484
|
+
}];
|
|
2485
|
+
readonly outputs: readonly [{
|
|
2486
|
+
readonly name: "";
|
|
2487
|
+
readonly type: "string";
|
|
2488
|
+
readonly internalType: "string";
|
|
2489
|
+
}];
|
|
2490
|
+
readonly stateMutability: "view";
|
|
2491
|
+
}, {
|
|
2492
|
+
readonly type: "function";
|
|
2493
|
+
readonly name: "resolve";
|
|
2494
|
+
readonly inputs: readonly [{
|
|
2495
|
+
readonly name: "name_";
|
|
2496
|
+
readonly type: "bytes";
|
|
2497
|
+
readonly internalType: "bytes";
|
|
2498
|
+
}, {
|
|
2499
|
+
readonly name: "data";
|
|
2500
|
+
readonly type: "bytes";
|
|
2501
|
+
readonly internalType: "bytes";
|
|
2502
|
+
}];
|
|
2503
|
+
readonly outputs: readonly [{
|
|
2504
|
+
readonly name: "";
|
|
2505
|
+
readonly type: "bytes";
|
|
2506
|
+
readonly internalType: "bytes";
|
|
2507
|
+
}];
|
|
2508
|
+
readonly stateMutability: "view";
|
|
2509
|
+
}, {
|
|
2510
|
+
readonly type: "function";
|
|
2511
|
+
readonly name: "setName";
|
|
2512
|
+
readonly inputs: readonly [{
|
|
2513
|
+
readonly name: "name";
|
|
2514
|
+
readonly type: "string";
|
|
2515
|
+
readonly internalType: "string";
|
|
2516
|
+
}];
|
|
2517
|
+
readonly outputs: readonly [];
|
|
2518
|
+
readonly stateMutability: "nonpayable";
|
|
2519
|
+
}, {
|
|
2520
|
+
readonly type: "function";
|
|
2521
|
+
readonly name: "setNameForAddr";
|
|
2522
|
+
readonly inputs: readonly [{
|
|
2523
|
+
readonly name: "addr";
|
|
2524
|
+
readonly type: "address";
|
|
2525
|
+
readonly internalType: "address";
|
|
2526
|
+
}, {
|
|
2527
|
+
readonly name: "name";
|
|
2528
|
+
readonly type: "string";
|
|
2529
|
+
readonly internalType: "string";
|
|
2530
|
+
}];
|
|
2531
|
+
readonly outputs: readonly [];
|
|
2532
|
+
readonly stateMutability: "nonpayable";
|
|
2533
|
+
}, {
|
|
2534
|
+
readonly type: "function";
|
|
2535
|
+
readonly name: "setNameForAddrWithSignature";
|
|
2536
|
+
readonly inputs: readonly [{
|
|
2537
|
+
readonly name: "claim";
|
|
2538
|
+
readonly type: "tuple";
|
|
2539
|
+
readonly internalType: "struct IL2ReverseRegistrar.NameClaim";
|
|
2540
|
+
readonly components: readonly [{
|
|
2541
|
+
readonly name: "name";
|
|
2542
|
+
readonly type: "string";
|
|
2543
|
+
readonly internalType: "string";
|
|
2544
|
+
}, {
|
|
2545
|
+
readonly name: "addr";
|
|
2546
|
+
readonly type: "address";
|
|
2547
|
+
readonly internalType: "address";
|
|
2548
|
+
}, {
|
|
2549
|
+
readonly name: "chainIds";
|
|
2550
|
+
readonly type: "uint256[]";
|
|
2551
|
+
readonly internalType: "uint256[]";
|
|
2552
|
+
}, {
|
|
2553
|
+
readonly name: "signedAt";
|
|
2554
|
+
readonly type: "uint256";
|
|
2555
|
+
readonly internalType: "uint256";
|
|
2556
|
+
}];
|
|
2557
|
+
}, {
|
|
2558
|
+
readonly name: "signature";
|
|
2559
|
+
readonly type: "bytes";
|
|
2560
|
+
readonly internalType: "bytes";
|
|
2561
|
+
}];
|
|
2562
|
+
readonly outputs: readonly [];
|
|
2563
|
+
readonly stateMutability: "nonpayable";
|
|
2564
|
+
}, {
|
|
2565
|
+
readonly type: "function";
|
|
2566
|
+
readonly name: "setNameForOwnableWithSignature";
|
|
2567
|
+
readonly inputs: readonly [{
|
|
2568
|
+
readonly name: "claim";
|
|
2569
|
+
readonly type: "tuple";
|
|
2570
|
+
readonly internalType: "struct IL2ReverseRegistrar.NameClaim";
|
|
2571
|
+
readonly components: readonly [{
|
|
2572
|
+
readonly name: "name";
|
|
2573
|
+
readonly type: "string";
|
|
2574
|
+
readonly internalType: "string";
|
|
2575
|
+
}, {
|
|
2576
|
+
readonly name: "addr";
|
|
2577
|
+
readonly type: "address";
|
|
2578
|
+
readonly internalType: "address";
|
|
2579
|
+
}, {
|
|
2580
|
+
readonly name: "chainIds";
|
|
2581
|
+
readonly type: "uint256[]";
|
|
2582
|
+
readonly internalType: "uint256[]";
|
|
2583
|
+
}, {
|
|
2584
|
+
readonly name: "signedAt";
|
|
2585
|
+
readonly type: "uint256";
|
|
2586
|
+
readonly internalType: "uint256";
|
|
2587
|
+
}];
|
|
2588
|
+
}, {
|
|
2589
|
+
readonly name: "owner";
|
|
2590
|
+
readonly type: "address";
|
|
2591
|
+
readonly internalType: "address";
|
|
2592
|
+
}, {
|
|
2593
|
+
readonly name: "signature";
|
|
2594
|
+
readonly type: "bytes";
|
|
2595
|
+
readonly internalType: "bytes";
|
|
2596
|
+
}];
|
|
2597
|
+
readonly outputs: readonly [];
|
|
2598
|
+
readonly stateMutability: "nonpayable";
|
|
2599
|
+
}, {
|
|
2600
|
+
readonly type: "function";
|
|
2601
|
+
readonly name: "supportsInterface";
|
|
2602
|
+
readonly inputs: readonly [{
|
|
2603
|
+
readonly name: "interfaceID";
|
|
2604
|
+
readonly type: "bytes4";
|
|
2605
|
+
readonly internalType: "bytes4";
|
|
2606
|
+
}];
|
|
2607
|
+
readonly outputs: readonly [{
|
|
2608
|
+
readonly name: "";
|
|
2609
|
+
readonly type: "bool";
|
|
2610
|
+
readonly internalType: "bool";
|
|
2611
|
+
}];
|
|
2612
|
+
readonly stateMutability: "view";
|
|
2613
|
+
}, {
|
|
2614
|
+
readonly type: "function";
|
|
2615
|
+
readonly name: "syncName";
|
|
2616
|
+
readonly inputs: readonly [{
|
|
2617
|
+
readonly name: "addr";
|
|
2618
|
+
readonly type: "address";
|
|
2619
|
+
readonly internalType: "address";
|
|
2620
|
+
}];
|
|
2621
|
+
readonly outputs: readonly [];
|
|
2622
|
+
readonly stateMutability: "nonpayable";
|
|
2623
|
+
}, {
|
|
2624
|
+
readonly type: "event";
|
|
2625
|
+
readonly name: "ExpiryUpdated";
|
|
2626
|
+
readonly inputs: readonly [{
|
|
2627
|
+
readonly name: "tokenId";
|
|
2628
|
+
readonly type: "uint256";
|
|
2629
|
+
readonly indexed: true;
|
|
2630
|
+
readonly internalType: "uint256";
|
|
2631
|
+
}, {
|
|
2632
|
+
readonly name: "newExpiry";
|
|
2633
|
+
readonly type: "uint64";
|
|
2634
|
+
readonly indexed: true;
|
|
2635
|
+
readonly internalType: "uint64";
|
|
2636
|
+
}, {
|
|
2637
|
+
readonly name: "sender";
|
|
2638
|
+
readonly type: "address";
|
|
2639
|
+
readonly indexed: true;
|
|
2640
|
+
readonly internalType: "address";
|
|
2641
|
+
}];
|
|
2642
|
+
readonly anonymous: false;
|
|
2643
|
+
}, {
|
|
2644
|
+
readonly type: "event";
|
|
2645
|
+
readonly name: "LabelRegistered";
|
|
2646
|
+
readonly inputs: readonly [{
|
|
2647
|
+
readonly name: "tokenId";
|
|
2648
|
+
readonly type: "uint256";
|
|
2649
|
+
readonly indexed: true;
|
|
2650
|
+
readonly internalType: "uint256";
|
|
2651
|
+
}, {
|
|
2652
|
+
readonly name: "labelHash";
|
|
2653
|
+
readonly type: "bytes32";
|
|
2654
|
+
readonly indexed: true;
|
|
2655
|
+
readonly internalType: "bytes32";
|
|
2656
|
+
}, {
|
|
2657
|
+
readonly name: "label";
|
|
2658
|
+
readonly type: "string";
|
|
2659
|
+
readonly indexed: false;
|
|
2660
|
+
readonly internalType: "string";
|
|
2661
|
+
}, {
|
|
2662
|
+
readonly name: "owner";
|
|
2663
|
+
readonly type: "address";
|
|
2664
|
+
readonly indexed: false;
|
|
2665
|
+
readonly internalType: "address";
|
|
2666
|
+
}, {
|
|
2667
|
+
readonly name: "expiry";
|
|
2668
|
+
readonly type: "uint64";
|
|
2669
|
+
readonly indexed: false;
|
|
2670
|
+
readonly internalType: "uint64";
|
|
2671
|
+
}, {
|
|
2672
|
+
readonly name: "sender";
|
|
2673
|
+
readonly type: "address";
|
|
2674
|
+
readonly indexed: true;
|
|
2675
|
+
readonly internalType: "address";
|
|
2676
|
+
}];
|
|
2677
|
+
readonly anonymous: false;
|
|
2678
|
+
}, {
|
|
2679
|
+
readonly type: "event";
|
|
2680
|
+
readonly name: "LabelReserved";
|
|
2681
|
+
readonly inputs: readonly [{
|
|
2682
|
+
readonly name: "tokenId";
|
|
2683
|
+
readonly type: "uint256";
|
|
2684
|
+
readonly indexed: true;
|
|
2685
|
+
readonly internalType: "uint256";
|
|
2686
|
+
}, {
|
|
2687
|
+
readonly name: "labelHash";
|
|
2688
|
+
readonly type: "bytes32";
|
|
2689
|
+
readonly indexed: true;
|
|
2690
|
+
readonly internalType: "bytes32";
|
|
2691
|
+
}, {
|
|
2692
|
+
readonly name: "label";
|
|
2693
|
+
readonly type: "string";
|
|
2694
|
+
readonly indexed: false;
|
|
2695
|
+
readonly internalType: "string";
|
|
2696
|
+
}, {
|
|
2697
|
+
readonly name: "expiry";
|
|
2698
|
+
readonly type: "uint64";
|
|
2699
|
+
readonly indexed: false;
|
|
2700
|
+
readonly internalType: "uint64";
|
|
2701
|
+
}, {
|
|
2702
|
+
readonly name: "sender";
|
|
2703
|
+
readonly type: "address";
|
|
2704
|
+
readonly indexed: true;
|
|
2705
|
+
readonly internalType: "address";
|
|
2706
|
+
}];
|
|
2707
|
+
readonly anonymous: false;
|
|
2708
|
+
}, {
|
|
2709
|
+
readonly type: "event";
|
|
2710
|
+
readonly name: "LabelUnregistered";
|
|
2711
|
+
readonly inputs: readonly [{
|
|
2712
|
+
readonly name: "tokenId";
|
|
2713
|
+
readonly type: "uint256";
|
|
2714
|
+
readonly indexed: true;
|
|
2715
|
+
readonly internalType: "uint256";
|
|
2716
|
+
}, {
|
|
2717
|
+
readonly name: "sender";
|
|
2718
|
+
readonly type: "address";
|
|
2719
|
+
readonly indexed: true;
|
|
2720
|
+
readonly internalType: "address";
|
|
2721
|
+
}];
|
|
2722
|
+
readonly anonymous: false;
|
|
2723
|
+
}, {
|
|
2724
|
+
readonly type: "event";
|
|
2725
|
+
readonly name: "NameChanged";
|
|
2726
|
+
readonly inputs: readonly [{
|
|
2727
|
+
readonly name: "node";
|
|
2728
|
+
readonly type: "bytes32";
|
|
2729
|
+
readonly indexed: true;
|
|
2730
|
+
readonly internalType: "bytes32";
|
|
2731
|
+
}, {
|
|
2732
|
+
readonly name: "name";
|
|
2733
|
+
readonly type: "string";
|
|
2734
|
+
readonly indexed: false;
|
|
2735
|
+
readonly internalType: "string";
|
|
2736
|
+
}];
|
|
2737
|
+
readonly anonymous: false;
|
|
2738
|
+
}, {
|
|
2739
|
+
readonly type: "event";
|
|
2740
|
+
readonly name: "NameForAddrChanged";
|
|
2741
|
+
readonly inputs: readonly [{
|
|
2742
|
+
readonly name: "addr";
|
|
2743
|
+
readonly type: "address";
|
|
2744
|
+
readonly indexed: true;
|
|
2745
|
+
readonly internalType: "address";
|
|
2746
|
+
}, {
|
|
2747
|
+
readonly name: "name";
|
|
2748
|
+
readonly type: "string";
|
|
2749
|
+
readonly indexed: false;
|
|
2750
|
+
readonly internalType: "string";
|
|
2751
|
+
}];
|
|
2752
|
+
readonly anonymous: false;
|
|
2753
|
+
}, {
|
|
2754
|
+
readonly type: "event";
|
|
2755
|
+
readonly name: "ParentUpdated";
|
|
2756
|
+
readonly inputs: readonly [{
|
|
2757
|
+
readonly name: "parent";
|
|
2758
|
+
readonly type: "address";
|
|
2759
|
+
readonly indexed: true;
|
|
2760
|
+
readonly internalType: "contract IRegistry";
|
|
2761
|
+
}, {
|
|
2762
|
+
readonly name: "label";
|
|
2763
|
+
readonly type: "string";
|
|
2764
|
+
readonly indexed: false;
|
|
2765
|
+
readonly internalType: "string";
|
|
2766
|
+
}, {
|
|
2767
|
+
readonly name: "sender";
|
|
2768
|
+
readonly type: "address";
|
|
2769
|
+
readonly indexed: true;
|
|
2770
|
+
readonly internalType: "address";
|
|
2771
|
+
}];
|
|
2772
|
+
readonly anonymous: false;
|
|
2773
|
+
}, {
|
|
2774
|
+
readonly type: "event";
|
|
2775
|
+
readonly name: "ResolverUpdated";
|
|
2776
|
+
readonly inputs: readonly [{
|
|
2777
|
+
readonly name: "tokenId";
|
|
2778
|
+
readonly type: "uint256";
|
|
2779
|
+
readonly indexed: true;
|
|
2780
|
+
readonly internalType: "uint256";
|
|
2781
|
+
}, {
|
|
2782
|
+
readonly name: "resolver";
|
|
2783
|
+
readonly type: "address";
|
|
2784
|
+
readonly indexed: true;
|
|
2785
|
+
readonly internalType: "address";
|
|
2786
|
+
}, {
|
|
2787
|
+
readonly name: "sender";
|
|
2788
|
+
readonly type: "address";
|
|
2789
|
+
readonly indexed: true;
|
|
2790
|
+
readonly internalType: "address";
|
|
2791
|
+
}];
|
|
2792
|
+
readonly anonymous: false;
|
|
2793
|
+
}, {
|
|
2794
|
+
readonly type: "event";
|
|
2795
|
+
readonly name: "SubregistryUpdated";
|
|
2796
|
+
readonly inputs: readonly [{
|
|
2797
|
+
readonly name: "tokenId";
|
|
2798
|
+
readonly type: "uint256";
|
|
2799
|
+
readonly indexed: true;
|
|
2800
|
+
readonly internalType: "uint256";
|
|
2801
|
+
}, {
|
|
2802
|
+
readonly name: "subregistry";
|
|
2803
|
+
readonly type: "address";
|
|
2804
|
+
readonly indexed: true;
|
|
2805
|
+
readonly internalType: "contract IRegistry";
|
|
2806
|
+
}, {
|
|
2807
|
+
readonly name: "sender";
|
|
2808
|
+
readonly type: "address";
|
|
2809
|
+
readonly indexed: true;
|
|
2810
|
+
readonly internalType: "address";
|
|
2811
|
+
}];
|
|
2812
|
+
readonly anonymous: false;
|
|
2813
|
+
}, {
|
|
2814
|
+
readonly type: "event";
|
|
2815
|
+
readonly name: "TokenRegenerated";
|
|
2816
|
+
readonly inputs: readonly [{
|
|
2817
|
+
readonly name: "oldTokenId";
|
|
2818
|
+
readonly type: "uint256";
|
|
2819
|
+
readonly indexed: true;
|
|
2820
|
+
readonly internalType: "uint256";
|
|
2821
|
+
}, {
|
|
2822
|
+
readonly name: "newTokenId";
|
|
2823
|
+
readonly type: "uint256";
|
|
2824
|
+
readonly indexed: true;
|
|
2825
|
+
readonly internalType: "uint256";
|
|
2826
|
+
}];
|
|
2827
|
+
readonly anonymous: false;
|
|
2828
|
+
}, {
|
|
2829
|
+
readonly type: "error";
|
|
2830
|
+
readonly name: "ChainIdsNotAscending";
|
|
2831
|
+
readonly inputs: readonly [];
|
|
2832
|
+
}, {
|
|
2833
|
+
readonly type: "error";
|
|
2834
|
+
readonly name: "CurrentChainNotFound";
|
|
2835
|
+
readonly inputs: readonly [{
|
|
2836
|
+
readonly name: "chainId";
|
|
2837
|
+
readonly type: "uint256";
|
|
2838
|
+
readonly internalType: "uint256";
|
|
2839
|
+
}];
|
|
2840
|
+
}, {
|
|
2841
|
+
readonly type: "error";
|
|
2842
|
+
readonly name: "InvalidSignature";
|
|
2843
|
+
readonly inputs: readonly [];
|
|
2844
|
+
}, {
|
|
2845
|
+
readonly type: "error";
|
|
2846
|
+
readonly name: "LabelIsEmpty";
|
|
2847
|
+
readonly inputs: readonly [];
|
|
2848
|
+
}, {
|
|
2849
|
+
readonly type: "error";
|
|
2850
|
+
readonly name: "LabelIsTooLong";
|
|
2851
|
+
readonly inputs: readonly [{
|
|
2852
|
+
readonly name: "label";
|
|
2853
|
+
readonly type: "string";
|
|
2854
|
+
readonly internalType: "string";
|
|
2855
|
+
}];
|
|
2856
|
+
}, {
|
|
2857
|
+
readonly type: "error";
|
|
2858
|
+
readonly name: "NotOwnerOfContract";
|
|
2859
|
+
readonly inputs: readonly [];
|
|
2860
|
+
}, {
|
|
2861
|
+
readonly type: "error";
|
|
2862
|
+
readonly name: "SignatureNotValidYet";
|
|
2863
|
+
readonly inputs: readonly [{
|
|
2864
|
+
readonly name: "signedAt";
|
|
2865
|
+
readonly type: "uint256";
|
|
2866
|
+
readonly internalType: "uint256";
|
|
2867
|
+
}, {
|
|
2868
|
+
readonly name: "currentTime";
|
|
2869
|
+
readonly type: "uint256";
|
|
2870
|
+
readonly internalType: "uint256";
|
|
2871
|
+
}];
|
|
2872
|
+
}, {
|
|
2873
|
+
readonly type: "error";
|
|
2874
|
+
readonly name: "StaleSignature";
|
|
2875
|
+
readonly inputs: readonly [{
|
|
2876
|
+
readonly name: "signedAt";
|
|
2877
|
+
readonly type: "uint256";
|
|
2878
|
+
readonly internalType: "uint256";
|
|
2879
|
+
}, {
|
|
2880
|
+
readonly name: "inception";
|
|
2881
|
+
readonly type: "uint256";
|
|
2882
|
+
readonly internalType: "uint256";
|
|
2883
|
+
}];
|
|
2884
|
+
}, {
|
|
2885
|
+
readonly type: "error";
|
|
2886
|
+
readonly name: "TimestampOutOfRange";
|
|
2887
|
+
readonly inputs: readonly [{
|
|
2888
|
+
readonly name: "timestamp";
|
|
2889
|
+
readonly type: "uint256";
|
|
2890
|
+
readonly internalType: "uint256";
|
|
2891
|
+
}];
|
|
2892
|
+
}, {
|
|
2893
|
+
readonly type: "error";
|
|
2894
|
+
readonly name: "Unauthorized";
|
|
2895
|
+
readonly inputs: readonly [];
|
|
2896
|
+
}, {
|
|
2897
|
+
readonly type: "error";
|
|
2898
|
+
readonly name: "UnreachableName";
|
|
2899
|
+
readonly inputs: readonly [{
|
|
2900
|
+
readonly name: "name";
|
|
2901
|
+
readonly type: "bytes";
|
|
2902
|
+
readonly internalType: "bytes";
|
|
2903
|
+
}];
|
|
2904
|
+
}, {
|
|
2905
|
+
readonly type: "error";
|
|
2906
|
+
readonly name: "UnsupportedResolverProfile";
|
|
2907
|
+
readonly inputs: readonly [{
|
|
2908
|
+
readonly name: "selector";
|
|
2909
|
+
readonly type: "bytes4";
|
|
2910
|
+
readonly internalType: "bytes4";
|
|
2911
|
+
}];
|
|
2912
|
+
}];
|
|
2913
|
+
|
|
2417
2914
|
declare const StandaloneReverseRegistrar: readonly [{
|
|
2418
2915
|
readonly anonymous: false;
|
|
2419
2916
|
readonly inputs: readonly [{
|
|
@@ -6995,6 +7492,10 @@ declare const AnyRegistrarControllerABI: readonly [{
|
|
|
6995
7492
|
readonly type: "function";
|
|
6996
7493
|
}];
|
|
6997
7494
|
|
|
7495
|
+
/**
|
|
7496
|
+
* NOTE: devnet uses anvil's default chain id of 31337, but we over-specify it here for documentation
|
|
7497
|
+
* @see https://github.com/ensdomains/contracts-v2/blob/580c60a20e80decce21cf15aafd762f96a96d544/contracts/script/setup.ts#L55
|
|
7498
|
+
*/
|
|
6998
7499
|
declare const ensTestEnvChain: {
|
|
6999
7500
|
readonly id: 31337;
|
|
7000
7501
|
readonly name: "ens-test-env";
|
|
@@ -7036,9 +7537,18 @@ declare const ensTestEnvChain: {
|
|
|
7036
7537
|
readonly sourceId?: number | undefined | undefined;
|
|
7037
7538
|
readonly testnet?: boolean | undefined | undefined;
|
|
7038
7539
|
readonly custom?: Record<string, unknown> | undefined;
|
|
7540
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
7039
7541
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
7040
7542
|
readonly formatters?: undefined;
|
|
7543
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7544
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7545
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7546
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7547
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7548
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7549
|
+
}] | undefined;
|
|
7041
7550
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7551
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7042
7552
|
};
|
|
7043
7553
|
/**
|
|
7044
7554
|
* NOTE: sepoliaV2Chain requires access to the Tenderly Virtual RPC Endpoint configured as
|
|
@@ -7080,9 +7590,18 @@ declare const sepoliaV2Chain: {
|
|
|
7080
7590
|
readonly sourceId?: number | undefined | undefined;
|
|
7081
7591
|
readonly testnet: true;
|
|
7082
7592
|
readonly custom?: Record<string, unknown> | undefined;
|
|
7593
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
7083
7594
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
7084
7595
|
readonly formatters?: undefined;
|
|
7596
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7597
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7598
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7599
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7600
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7601
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7602
|
+
}] | undefined;
|
|
7085
7603
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7604
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7086
7605
|
};
|
|
7087
7606
|
|
|
7088
7607
|
/**
|
|
@@ -8386,9 +8905,18 @@ declare const _default$3: {
|
|
|
8386
8905
|
readonly sourceId?: number | undefined | undefined;
|
|
8387
8906
|
readonly testnet?: boolean | undefined | undefined;
|
|
8388
8907
|
readonly custom?: Record<string, unknown> | undefined;
|
|
8908
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
8389
8909
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
8390
8910
|
readonly formatters?: undefined;
|
|
8911
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
8912
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8913
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
8914
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8915
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8916
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8917
|
+
}] | undefined;
|
|
8391
8918
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
8919
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
8392
8920
|
};
|
|
8393
8921
|
contracts: {
|
|
8394
8922
|
ENSv1RegistryOld: {
|
|
@@ -14469,9 +14997,18 @@ declare const _default$3: {
|
|
|
14469
14997
|
readonly sourceId?: number | undefined | undefined;
|
|
14470
14998
|
readonly testnet?: boolean | undefined | undefined;
|
|
14471
14999
|
readonly custom?: Record<string, unknown> | undefined;
|
|
15000
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
14472
15001
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
14473
15002
|
readonly formatters?: undefined;
|
|
15003
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
15004
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
15005
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
15006
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
15007
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
15008
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
15009
|
+
}] | undefined;
|
|
14474
15010
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
15011
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
14475
15012
|
};
|
|
14476
15013
|
contracts: {
|
|
14477
15014
|
Resolver: {
|
|
@@ -22710,9 +23247,18 @@ declare const _default$3: {
|
|
|
22710
23247
|
readonly sourceId?: number | undefined | undefined;
|
|
22711
23248
|
readonly testnet?: boolean | undefined | undefined;
|
|
22712
23249
|
readonly custom?: Record<string, unknown> | undefined;
|
|
23250
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
22713
23251
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
22714
23252
|
readonly formatters?: undefined;
|
|
23253
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
23254
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
23255
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
23256
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
23257
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
23258
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
23259
|
+
}] | undefined;
|
|
22715
23260
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
23261
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
22716
23262
|
};
|
|
22717
23263
|
contracts: {
|
|
22718
23264
|
DefaultReverseRegistrar: {
|
|
@@ -26192,9 +26738,18 @@ declare const _default$2: {
|
|
|
26192
26738
|
sourceId?: number | undefined | undefined;
|
|
26193
26739
|
testnet?: boolean | undefined | undefined;
|
|
26194
26740
|
custom?: Record<string, unknown> | undefined;
|
|
26741
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
26195
26742
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
26196
26743
|
formatters?: undefined;
|
|
26744
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
26745
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
26746
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
26747
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
26748
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
26749
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
26750
|
+
}] | undefined;
|
|
26197
26751
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
26752
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
26198
26753
|
};
|
|
26199
26754
|
contracts: {
|
|
26200
26755
|
ENSv1RegistryOld: {
|
|
@@ -33882,7 +34437,7 @@ declare const _default$2: {
|
|
|
33882
34437
|
readonly stateMutability: "view";
|
|
33883
34438
|
readonly type: "function";
|
|
33884
34439
|
}];
|
|
33885
|
-
address: "
|
|
34440
|
+
address: "0x1507ce9421232fdbd302f5ebe4590f8d77febbff";
|
|
33886
34441
|
startBlock: number;
|
|
33887
34442
|
};
|
|
33888
34443
|
ArgentResolver: {
|
|
@@ -36157,9 +36712,6 @@ declare const _default$2: {
|
|
|
36157
36712
|
*
|
|
36158
36713
|
* The owner of 'base.eth' in the ENS Registry in the mainnet ENS namespace (e.g. Coinbase)
|
|
36159
36714
|
* has the ability to change this configuration at any time.
|
|
36160
|
-
*
|
|
36161
|
-
* See the reference documentation for additional context:
|
|
36162
|
-
* docs/ensnode/src/content/docs/reference/mainnet-registered-subnames-of-subregistries.mdx
|
|
36163
36715
|
*/
|
|
36164
36716
|
chain: {
|
|
36165
36717
|
blockExplorers: {
|
|
@@ -36233,6 +36785,7 @@ declare const _default$2: {
|
|
|
36233
36785
|
sourceId: 1;
|
|
36234
36786
|
testnet?: boolean | undefined | undefined;
|
|
36235
36787
|
custom?: Record<string, unknown> | undefined;
|
|
36788
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
36236
36789
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
36237
36790
|
formatters: {
|
|
36238
36791
|
readonly block: {
|
|
@@ -36273,6 +36826,7 @@ declare const _default$2: {
|
|
|
36273
36826
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
36274
36827
|
blockHash: `0x${string}` | null;
|
|
36275
36828
|
blockNumber: bigint | null;
|
|
36829
|
+
blockTimestamp?: bigint | undefined;
|
|
36276
36830
|
from: viem.Address;
|
|
36277
36831
|
gas: bigint;
|
|
36278
36832
|
hash: viem.Hash;
|
|
@@ -36298,16 +36852,17 @@ declare const _default$2: {
|
|
|
36298
36852
|
r: viem.Hex;
|
|
36299
36853
|
s: viem.Hex;
|
|
36300
36854
|
v: bigint;
|
|
36301
|
-
value: bigint;
|
|
36302
|
-
gas: bigint;
|
|
36303
36855
|
to: viem.Address | null;
|
|
36304
36856
|
from: viem.Address;
|
|
36857
|
+
gas: bigint;
|
|
36305
36858
|
nonce: number;
|
|
36859
|
+
value: bigint;
|
|
36306
36860
|
blockHash: `0x${string}` | null;
|
|
36307
36861
|
blockNumber: bigint | null;
|
|
36308
|
-
|
|
36862
|
+
blockTimestamp?: bigint | undefined;
|
|
36309
36863
|
hash: viem.Hash;
|
|
36310
36864
|
input: viem.Hex;
|
|
36865
|
+
transactionIndex: number | null;
|
|
36311
36866
|
typeHex: viem.Hex | null;
|
|
36312
36867
|
accessList?: undefined | undefined;
|
|
36313
36868
|
authorizationList?: undefined | undefined;
|
|
@@ -36321,13 +36876,11 @@ declare const _default$2: {
|
|
|
36321
36876
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
36322
36877
|
isSystemTx?: undefined | undefined;
|
|
36323
36878
|
mint?: undefined | undefined;
|
|
36324
|
-
sourceHash
|
|
36325
|
-
* This controller was removed from BaseRegistrar contract
|
|
36326
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
36327
|
-
*/: undefined | undefined;
|
|
36879
|
+
sourceHash?: undefined | undefined;
|
|
36328
36880
|
} | {
|
|
36329
36881
|
blockHash: `0x${string}` | null;
|
|
36330
36882
|
blockNumber: bigint | null;
|
|
36883
|
+
blockTimestamp?: bigint | undefined;
|
|
36331
36884
|
from: viem.Address;
|
|
36332
36885
|
gas: bigint;
|
|
36333
36886
|
hash: viem.Hash;
|
|
@@ -36356,6 +36909,7 @@ declare const _default$2: {
|
|
|
36356
36909
|
} | {
|
|
36357
36910
|
blockHash: `0x${string}` | null;
|
|
36358
36911
|
blockNumber: bigint | null;
|
|
36912
|
+
blockTimestamp?: bigint | undefined;
|
|
36359
36913
|
from: viem.Address;
|
|
36360
36914
|
gas: bigint;
|
|
36361
36915
|
hash: viem.Hash;
|
|
@@ -36384,6 +36938,7 @@ declare const _default$2: {
|
|
|
36384
36938
|
} | {
|
|
36385
36939
|
blockHash: `0x${string}` | null;
|
|
36386
36940
|
blockNumber: bigint | null;
|
|
36941
|
+
blockTimestamp?: bigint | undefined;
|
|
36387
36942
|
from: viem.Address;
|
|
36388
36943
|
gas: bigint;
|
|
36389
36944
|
hash: viem.Hash;
|
|
@@ -36412,6 +36967,7 @@ declare const _default$2: {
|
|
|
36412
36967
|
} | {
|
|
36413
36968
|
blockHash: `0x${string}` | null;
|
|
36414
36969
|
blockNumber: bigint | null;
|
|
36970
|
+
blockTimestamp?: bigint | undefined;
|
|
36415
36971
|
from: viem.Address;
|
|
36416
36972
|
gas: bigint;
|
|
36417
36973
|
hash: viem.Hash;
|
|
@@ -36447,6 +37003,7 @@ declare const _default$2: {
|
|
|
36447
37003
|
blobGasUsed?: bigint | undefined;
|
|
36448
37004
|
blockHash: viem.Hash;
|
|
36449
37005
|
blockNumber: bigint;
|
|
37006
|
+
blockTimestamp?: bigint | undefined;
|
|
36450
37007
|
contractAddress: viem.Address | null | undefined;
|
|
36451
37008
|
cumulativeGasUsed: bigint;
|
|
36452
37009
|
effectiveGasPrice: bigint;
|
|
@@ -36468,9 +37025,17 @@ declare const _default$2: {
|
|
|
36468
37025
|
type: "transactionReceipt";
|
|
36469
37026
|
};
|
|
36470
37027
|
};
|
|
37028
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
37029
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
37030
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
37031
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
37032
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
37033
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
37034
|
+
}] | undefined;
|
|
36471
37035
|
serializers: {
|
|
36472
37036
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
36473
37037
|
};
|
|
37038
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
36474
37039
|
};
|
|
36475
37040
|
contracts: {
|
|
36476
37041
|
Registry: {
|
|
@@ -43394,9 +43959,6 @@ declare const _default$2: {
|
|
|
43394
43959
|
*
|
|
43395
43960
|
* The owner of 'linea.eth' in the ENS Registry in the mainnet ENS namespace (e.g. Consensys)
|
|
43396
43961
|
* has the ability to change this configuration at any time.
|
|
43397
|
-
*
|
|
43398
|
-
* See the reference documentation for additional context:
|
|
43399
|
-
* docs/ensnode/src/content/docs/reference/mainnet-registered-subnames-of-subregistries.mdx
|
|
43400
43962
|
*/
|
|
43401
43963
|
chain: {
|
|
43402
43964
|
blockExplorers: {
|
|
@@ -43439,12 +44001,21 @@ declare const _default$2: {
|
|
|
43439
44001
|
sourceId?: number | undefined | undefined;
|
|
43440
44002
|
testnet: false;
|
|
43441
44003
|
custom?: Record<string, unknown> | undefined;
|
|
44004
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
43442
44005
|
fees: {
|
|
43443
44006
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
43444
44007
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
43445
44008
|
};
|
|
43446
44009
|
formatters?: undefined;
|
|
44010
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
44011
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
44012
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
44013
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
44014
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
44015
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
44016
|
+
}] | undefined;
|
|
43447
44017
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
44018
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
43448
44019
|
};
|
|
43449
44020
|
contracts: {
|
|
43450
44021
|
Registry: {
|
|
@@ -48568,6 +49139,7 @@ declare const _default$2: {
|
|
|
48568
49139
|
sourceId: 1;
|
|
48569
49140
|
testnet?: boolean | undefined | undefined;
|
|
48570
49141
|
custom?: Record<string, unknown> | undefined;
|
|
49142
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
48571
49143
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
48572
49144
|
formatters: {
|
|
48573
49145
|
readonly block: {
|
|
@@ -48608,6 +49180,7 @@ declare const _default$2: {
|
|
|
48608
49180
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
48609
49181
|
blockHash: `0x${string}` | null;
|
|
48610
49182
|
blockNumber: bigint | null;
|
|
49183
|
+
blockTimestamp?: bigint | undefined;
|
|
48611
49184
|
from: viem.Address;
|
|
48612
49185
|
gas: bigint;
|
|
48613
49186
|
hash: viem.Hash;
|
|
@@ -48633,16 +49206,17 @@ declare const _default$2: {
|
|
|
48633
49206
|
r: viem.Hex;
|
|
48634
49207
|
s: viem.Hex;
|
|
48635
49208
|
v: bigint;
|
|
48636
|
-
value: bigint;
|
|
48637
|
-
gas: bigint;
|
|
48638
49209
|
to: viem.Address | null;
|
|
48639
49210
|
from: viem.Address;
|
|
49211
|
+
gas: bigint;
|
|
48640
49212
|
nonce: number;
|
|
49213
|
+
value: bigint;
|
|
48641
49214
|
blockHash: `0x${string}` | null;
|
|
48642
49215
|
blockNumber: bigint | null;
|
|
48643
|
-
|
|
49216
|
+
blockTimestamp?: bigint | undefined;
|
|
48644
49217
|
hash: viem.Hash;
|
|
48645
49218
|
input: viem.Hex;
|
|
49219
|
+
transactionIndex: number | null;
|
|
48646
49220
|
typeHex: viem.Hex | null;
|
|
48647
49221
|
accessList?: undefined | undefined;
|
|
48648
49222
|
authorizationList?: undefined | undefined;
|
|
@@ -48660,6 +49234,7 @@ declare const _default$2: {
|
|
|
48660
49234
|
} | {
|
|
48661
49235
|
blockHash: `0x${string}` | null;
|
|
48662
49236
|
blockNumber: bigint | null;
|
|
49237
|
+
blockTimestamp?: bigint | undefined;
|
|
48663
49238
|
from: viem.Address;
|
|
48664
49239
|
gas: bigint;
|
|
48665
49240
|
hash: viem.Hash;
|
|
@@ -48688,6 +49263,7 @@ declare const _default$2: {
|
|
|
48688
49263
|
} | {
|
|
48689
49264
|
blockHash: `0x${string}` | null;
|
|
48690
49265
|
blockNumber: bigint | null;
|
|
49266
|
+
blockTimestamp?: bigint | undefined;
|
|
48691
49267
|
from: viem.Address;
|
|
48692
49268
|
gas: bigint;
|
|
48693
49269
|
hash: viem.Hash;
|
|
@@ -48716,6 +49292,7 @@ declare const _default$2: {
|
|
|
48716
49292
|
} | {
|
|
48717
49293
|
blockHash: `0x${string}` | null;
|
|
48718
49294
|
blockNumber: bigint | null;
|
|
49295
|
+
blockTimestamp?: bigint | undefined;
|
|
48719
49296
|
from: viem.Address;
|
|
48720
49297
|
gas: bigint;
|
|
48721
49298
|
hash: viem.Hash;
|
|
@@ -48744,6 +49321,7 @@ declare const _default$2: {
|
|
|
48744
49321
|
} | {
|
|
48745
49322
|
blockHash: `0x${string}` | null;
|
|
48746
49323
|
blockNumber: bigint | null;
|
|
49324
|
+
blockTimestamp?: bigint | undefined;
|
|
48747
49325
|
from: viem.Address;
|
|
48748
49326
|
gas: bigint;
|
|
48749
49327
|
hash: viem.Hash;
|
|
@@ -48779,6 +49357,7 @@ declare const _default$2: {
|
|
|
48779
49357
|
blobGasUsed?: bigint | undefined;
|
|
48780
49358
|
blockHash: viem.Hash;
|
|
48781
49359
|
blockNumber: bigint;
|
|
49360
|
+
blockTimestamp?: bigint | undefined;
|
|
48782
49361
|
contractAddress: viem.Address | null | undefined;
|
|
48783
49362
|
cumulativeGasUsed: bigint;
|
|
48784
49363
|
effectiveGasPrice: bigint;
|
|
@@ -48800,9 +49379,17 @@ declare const _default$2: {
|
|
|
48800
49379
|
type: "transactionReceipt";
|
|
48801
49380
|
};
|
|
48802
49381
|
};
|
|
49382
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
49383
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
49384
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
49385
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
49386
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
49387
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
49388
|
+
}] | undefined;
|
|
48803
49389
|
serializers: {
|
|
48804
49390
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
48805
49391
|
};
|
|
49392
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
48806
49393
|
};
|
|
48807
49394
|
contracts: {
|
|
48808
49395
|
ThreeDNSToken: {
|
|
@@ -50202,6 +50789,7 @@ declare const _default$2: {
|
|
|
50202
50789
|
sourceId: 1;
|
|
50203
50790
|
testnet?: boolean | undefined | undefined;
|
|
50204
50791
|
custom?: Record<string, unknown> | undefined;
|
|
50792
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
50205
50793
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
50206
50794
|
formatters: {
|
|
50207
50795
|
readonly block: {
|
|
@@ -50242,6 +50830,7 @@ declare const _default$2: {
|
|
|
50242
50830
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
50243
50831
|
blockHash: `0x${string}` | null;
|
|
50244
50832
|
blockNumber: bigint | null;
|
|
50833
|
+
blockTimestamp?: bigint | undefined;
|
|
50245
50834
|
from: viem.Address;
|
|
50246
50835
|
gas: bigint;
|
|
50247
50836
|
hash: viem.Hash;
|
|
@@ -50267,16 +50856,17 @@ declare const _default$2: {
|
|
|
50267
50856
|
r: viem.Hex;
|
|
50268
50857
|
s: viem.Hex;
|
|
50269
50858
|
v: bigint;
|
|
50270
|
-
value: bigint;
|
|
50271
|
-
gas: bigint;
|
|
50272
50859
|
to: viem.Address | null;
|
|
50273
50860
|
from: viem.Address;
|
|
50861
|
+
gas: bigint;
|
|
50274
50862
|
nonce: number;
|
|
50863
|
+
value: bigint;
|
|
50275
50864
|
blockHash: `0x${string}` | null;
|
|
50276
50865
|
blockNumber: bigint | null;
|
|
50277
|
-
|
|
50866
|
+
blockTimestamp?: bigint | undefined;
|
|
50278
50867
|
hash: viem.Hash;
|
|
50279
50868
|
input: viem.Hex;
|
|
50869
|
+
transactionIndex: number | null;
|
|
50280
50870
|
typeHex: viem.Hex | null;
|
|
50281
50871
|
accessList?: undefined | undefined;
|
|
50282
50872
|
authorizationList?: undefined | undefined;
|
|
@@ -50290,13 +50880,11 @@ declare const _default$2: {
|
|
|
50290
50880
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
50291
50881
|
isSystemTx?: undefined | undefined;
|
|
50292
50882
|
mint?: undefined | undefined;
|
|
50293
|
-
sourceHash
|
|
50294
|
-
* This controller was removed from BaseRegistrar contract
|
|
50295
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
50296
|
-
*/: undefined | undefined;
|
|
50883
|
+
sourceHash?: undefined | undefined;
|
|
50297
50884
|
} | {
|
|
50298
50885
|
blockHash: `0x${string}` | null;
|
|
50299
50886
|
blockNumber: bigint | null;
|
|
50887
|
+
blockTimestamp?: bigint | undefined;
|
|
50300
50888
|
from: viem.Address;
|
|
50301
50889
|
gas: bigint;
|
|
50302
50890
|
hash: viem.Hash;
|
|
@@ -50325,6 +50913,7 @@ declare const _default$2: {
|
|
|
50325
50913
|
} | {
|
|
50326
50914
|
blockHash: `0x${string}` | null;
|
|
50327
50915
|
blockNumber: bigint | null;
|
|
50916
|
+
blockTimestamp?: bigint | undefined;
|
|
50328
50917
|
from: viem.Address;
|
|
50329
50918
|
gas: bigint;
|
|
50330
50919
|
hash: viem.Hash;
|
|
@@ -50353,6 +50942,7 @@ declare const _default$2: {
|
|
|
50353
50942
|
} | {
|
|
50354
50943
|
blockHash: `0x${string}` | null;
|
|
50355
50944
|
blockNumber: bigint | null;
|
|
50945
|
+
blockTimestamp?: bigint | undefined;
|
|
50356
50946
|
from: viem.Address;
|
|
50357
50947
|
gas: bigint;
|
|
50358
50948
|
hash: viem.Hash;
|
|
@@ -50381,6 +50971,7 @@ declare const _default$2: {
|
|
|
50381
50971
|
} | {
|
|
50382
50972
|
blockHash: `0x${string}` | null;
|
|
50383
50973
|
blockNumber: bigint | null;
|
|
50974
|
+
blockTimestamp?: bigint | undefined;
|
|
50384
50975
|
from: viem.Address;
|
|
50385
50976
|
gas: bigint;
|
|
50386
50977
|
hash: viem.Hash;
|
|
@@ -50416,6 +51007,7 @@ declare const _default$2: {
|
|
|
50416
51007
|
blobGasUsed?: bigint | undefined;
|
|
50417
51008
|
blockHash: viem.Hash;
|
|
50418
51009
|
blockNumber: bigint;
|
|
51010
|
+
blockTimestamp?: bigint | undefined;
|
|
50419
51011
|
contractAddress: viem.Address | null | undefined;
|
|
50420
51012
|
cumulativeGasUsed: bigint;
|
|
50421
51013
|
effectiveGasPrice: bigint;
|
|
@@ -50437,9 +51029,17 @@ declare const _default$2: {
|
|
|
50437
51029
|
type: "transactionReceipt";
|
|
50438
51030
|
};
|
|
50439
51031
|
};
|
|
51032
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
51033
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
51034
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
51035
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
51036
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
51037
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
51038
|
+
}] | undefined;
|
|
50440
51039
|
serializers: {
|
|
50441
51040
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
50442
51041
|
};
|
|
51042
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
50443
51043
|
};
|
|
50444
51044
|
contracts: {
|
|
50445
51045
|
ThreeDNSToken: {
|
|
@@ -51802,9 +52402,18 @@ declare const _default$2: {
|
|
|
51802
52402
|
sourceId?: number | undefined | undefined;
|
|
51803
52403
|
testnet?: boolean | undefined | undefined;
|
|
51804
52404
|
custom?: Record<string, unknown> | undefined;
|
|
52405
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
51805
52406
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
51806
52407
|
formatters?: undefined;
|
|
52408
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
52409
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
52410
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
52411
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
52412
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
52413
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
52414
|
+
}] | undefined;
|
|
51807
52415
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
52416
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
51808
52417
|
};
|
|
51809
52418
|
contracts: {
|
|
51810
52419
|
DefaultReverseRegistrar: {
|
|
@@ -67697,6 +68306,7 @@ declare const _default$2: {
|
|
|
67697
68306
|
sourceId: 1;
|
|
67698
68307
|
testnet?: boolean | undefined | undefined;
|
|
67699
68308
|
custom?: Record<string, unknown> | undefined;
|
|
68309
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
67700
68310
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
67701
68311
|
formatters: {
|
|
67702
68312
|
readonly block: {
|
|
@@ -67737,6 +68347,7 @@ declare const _default$2: {
|
|
|
67737
68347
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
67738
68348
|
blockHash: `0x${string}` | null;
|
|
67739
68349
|
blockNumber: bigint | null;
|
|
68350
|
+
blockTimestamp?: bigint | undefined;
|
|
67740
68351
|
from: viem.Address;
|
|
67741
68352
|
gas: bigint;
|
|
67742
68353
|
hash: viem.Hash;
|
|
@@ -67762,16 +68373,17 @@ declare const _default$2: {
|
|
|
67762
68373
|
r: viem.Hex;
|
|
67763
68374
|
s: viem.Hex;
|
|
67764
68375
|
v: bigint;
|
|
67765
|
-
value: bigint;
|
|
67766
|
-
gas: bigint;
|
|
67767
68376
|
to: viem.Address | null;
|
|
67768
68377
|
from: viem.Address;
|
|
68378
|
+
gas: bigint;
|
|
67769
68379
|
nonce: number;
|
|
68380
|
+
value: bigint;
|
|
67770
68381
|
blockHash: `0x${string}` | null;
|
|
67771
68382
|
blockNumber: bigint | null;
|
|
67772
|
-
|
|
68383
|
+
blockTimestamp?: bigint | undefined;
|
|
67773
68384
|
hash: viem.Hash;
|
|
67774
68385
|
input: viem.Hex;
|
|
68386
|
+
transactionIndex: number | null;
|
|
67775
68387
|
typeHex: viem.Hex | null;
|
|
67776
68388
|
accessList?: undefined | undefined;
|
|
67777
68389
|
authorizationList?: undefined | undefined;
|
|
@@ -67785,13 +68397,11 @@ declare const _default$2: {
|
|
|
67785
68397
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
67786
68398
|
isSystemTx?: undefined | undefined;
|
|
67787
68399
|
mint?: undefined | undefined;
|
|
67788
|
-
sourceHash
|
|
67789
|
-
* This controller was removed from BaseRegistrar contract
|
|
67790
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
67791
|
-
*/: undefined | undefined;
|
|
68400
|
+
sourceHash?: undefined | undefined;
|
|
67792
68401
|
} | {
|
|
67793
68402
|
blockHash: `0x${string}` | null;
|
|
67794
68403
|
blockNumber: bigint | null;
|
|
68404
|
+
blockTimestamp?: bigint | undefined;
|
|
67795
68405
|
from: viem.Address;
|
|
67796
68406
|
gas: bigint;
|
|
67797
68407
|
hash: viem.Hash;
|
|
@@ -67820,6 +68430,7 @@ declare const _default$2: {
|
|
|
67820
68430
|
} | {
|
|
67821
68431
|
blockHash: `0x${string}` | null;
|
|
67822
68432
|
blockNumber: bigint | null;
|
|
68433
|
+
blockTimestamp?: bigint | undefined;
|
|
67823
68434
|
from: viem.Address;
|
|
67824
68435
|
gas: bigint;
|
|
67825
68436
|
hash: viem.Hash;
|
|
@@ -67848,6 +68459,7 @@ declare const _default$2: {
|
|
|
67848
68459
|
} | {
|
|
67849
68460
|
blockHash: `0x${string}` | null;
|
|
67850
68461
|
blockNumber: bigint | null;
|
|
68462
|
+
blockTimestamp?: bigint | undefined;
|
|
67851
68463
|
from: viem.Address;
|
|
67852
68464
|
gas: bigint;
|
|
67853
68465
|
hash: viem.Hash;
|
|
@@ -67876,6 +68488,7 @@ declare const _default$2: {
|
|
|
67876
68488
|
} | {
|
|
67877
68489
|
blockHash: `0x${string}` | null;
|
|
67878
68490
|
blockNumber: bigint | null;
|
|
68491
|
+
blockTimestamp?: bigint | undefined;
|
|
67879
68492
|
from: viem.Address;
|
|
67880
68493
|
gas: bigint;
|
|
67881
68494
|
hash: viem.Hash;
|
|
@@ -67911,6 +68524,7 @@ declare const _default$2: {
|
|
|
67911
68524
|
blobGasUsed?: bigint | undefined;
|
|
67912
68525
|
blockHash: viem.Hash;
|
|
67913
68526
|
blockNumber: bigint;
|
|
68527
|
+
blockTimestamp?: bigint | undefined;
|
|
67914
68528
|
contractAddress: viem.Address | null | undefined;
|
|
67915
68529
|
cumulativeGasUsed: bigint;
|
|
67916
68530
|
effectiveGasPrice: bigint;
|
|
@@ -67932,9 +68546,17 @@ declare const _default$2: {
|
|
|
67932
68546
|
type: "transactionReceipt";
|
|
67933
68547
|
};
|
|
67934
68548
|
};
|
|
68549
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68550
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68551
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68552
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68553
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
68554
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
68555
|
+
}] | undefined;
|
|
67935
68556
|
serializers: {
|
|
67936
68557
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
67937
68558
|
};
|
|
68559
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
67938
68560
|
};
|
|
67939
68561
|
contracts: {
|
|
67940
68562
|
L2ReverseRegistrar: {
|
|
@@ -68032,12 +68654,21 @@ declare const _default$2: {
|
|
|
68032
68654
|
sourceId?: number | undefined | undefined;
|
|
68033
68655
|
testnet: false;
|
|
68034
68656
|
custom?: Record<string, unknown> | undefined;
|
|
68657
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68035
68658
|
fees: {
|
|
68036
68659
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
68037
68660
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
68038
68661
|
};
|
|
68039
68662
|
formatters?: undefined;
|
|
68663
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68664
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68665
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68666
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68667
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
68668
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
68669
|
+
}] | undefined;
|
|
68040
68670
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
68671
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68041
68672
|
};
|
|
68042
68673
|
contracts: {
|
|
68043
68674
|
L2ReverseRegistrar: {
|
|
@@ -68164,6 +68795,7 @@ declare const _default$2: {
|
|
|
68164
68795
|
sourceId: 1;
|
|
68165
68796
|
testnet?: boolean | undefined | undefined;
|
|
68166
68797
|
custom?: Record<string, unknown> | undefined;
|
|
68798
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68167
68799
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68168
68800
|
formatters: {
|
|
68169
68801
|
readonly block: {
|
|
@@ -68204,6 +68836,7 @@ declare const _default$2: {
|
|
|
68204
68836
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
68205
68837
|
blockHash: `0x${string}` | null;
|
|
68206
68838
|
blockNumber: bigint | null;
|
|
68839
|
+
blockTimestamp?: bigint | undefined;
|
|
68207
68840
|
from: viem.Address;
|
|
68208
68841
|
gas: bigint;
|
|
68209
68842
|
hash: viem.Hash;
|
|
@@ -68229,16 +68862,17 @@ declare const _default$2: {
|
|
|
68229
68862
|
r: viem.Hex;
|
|
68230
68863
|
s: viem.Hex;
|
|
68231
68864
|
v: bigint;
|
|
68232
|
-
value: bigint;
|
|
68233
|
-
gas: bigint;
|
|
68234
68865
|
to: viem.Address | null;
|
|
68235
68866
|
from: viem.Address;
|
|
68867
|
+
gas: bigint;
|
|
68236
68868
|
nonce: number;
|
|
68869
|
+
value: bigint;
|
|
68237
68870
|
blockHash: `0x${string}` | null;
|
|
68238
68871
|
blockNumber: bigint | null;
|
|
68239
|
-
|
|
68872
|
+
blockTimestamp?: bigint | undefined;
|
|
68240
68873
|
hash: viem.Hash;
|
|
68241
68874
|
input: viem.Hex;
|
|
68875
|
+
transactionIndex: number | null;
|
|
68242
68876
|
typeHex: viem.Hex | null;
|
|
68243
68877
|
accessList?: undefined | undefined;
|
|
68244
68878
|
authorizationList?: undefined | undefined;
|
|
@@ -68256,6 +68890,7 @@ declare const _default$2: {
|
|
|
68256
68890
|
} | {
|
|
68257
68891
|
blockHash: `0x${string}` | null;
|
|
68258
68892
|
blockNumber: bigint | null;
|
|
68893
|
+
blockTimestamp?: bigint | undefined;
|
|
68259
68894
|
from: viem.Address;
|
|
68260
68895
|
gas: bigint;
|
|
68261
68896
|
hash: viem.Hash;
|
|
@@ -68284,6 +68919,7 @@ declare const _default$2: {
|
|
|
68284
68919
|
} | {
|
|
68285
68920
|
blockHash: `0x${string}` | null;
|
|
68286
68921
|
blockNumber: bigint | null;
|
|
68922
|
+
blockTimestamp?: bigint | undefined;
|
|
68287
68923
|
from: viem.Address;
|
|
68288
68924
|
gas: bigint;
|
|
68289
68925
|
hash: viem.Hash;
|
|
@@ -68312,6 +68948,7 @@ declare const _default$2: {
|
|
|
68312
68948
|
} | {
|
|
68313
68949
|
blockHash: `0x${string}` | null;
|
|
68314
68950
|
blockNumber: bigint | null;
|
|
68951
|
+
blockTimestamp?: bigint | undefined;
|
|
68315
68952
|
from: viem.Address;
|
|
68316
68953
|
gas: bigint;
|
|
68317
68954
|
hash: viem.Hash;
|
|
@@ -68340,6 +68977,7 @@ declare const _default$2: {
|
|
|
68340
68977
|
} | {
|
|
68341
68978
|
blockHash: `0x${string}` | null;
|
|
68342
68979
|
blockNumber: bigint | null;
|
|
68980
|
+
blockTimestamp?: bigint | undefined;
|
|
68343
68981
|
from: viem.Address;
|
|
68344
68982
|
gas: bigint;
|
|
68345
68983
|
hash: viem.Hash;
|
|
@@ -68375,6 +69013,7 @@ declare const _default$2: {
|
|
|
68375
69013
|
blobGasUsed?: bigint | undefined;
|
|
68376
69014
|
blockHash: viem.Hash;
|
|
68377
69015
|
blockNumber: bigint;
|
|
69016
|
+
blockTimestamp?: bigint | undefined;
|
|
68378
69017
|
contractAddress: viem.Address | null | undefined;
|
|
68379
69018
|
cumulativeGasUsed: bigint;
|
|
68380
69019
|
effectiveGasPrice: bigint;
|
|
@@ -68396,9 +69035,17 @@ declare const _default$2: {
|
|
|
68396
69035
|
type: "transactionReceipt";
|
|
68397
69036
|
};
|
|
68398
69037
|
};
|
|
69038
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69039
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69040
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69041
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69042
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69043
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69044
|
+
}] | undefined;
|
|
68399
69045
|
serializers: {
|
|
68400
69046
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
68401
69047
|
};
|
|
69048
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68402
69049
|
};
|
|
68403
69050
|
contracts: {
|
|
68404
69051
|
L2ReverseRegistrar: {
|
|
@@ -68487,9 +69134,18 @@ declare const _default$2: {
|
|
|
68487
69134
|
sourceId?: number | undefined | undefined;
|
|
68488
69135
|
testnet?: boolean | undefined | undefined;
|
|
68489
69136
|
custom?: Record<string, unknown> | undefined;
|
|
69137
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68490
69138
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68491
69139
|
formatters?: undefined;
|
|
69140
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69141
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69142
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69143
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69144
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69145
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69146
|
+
}] | undefined;
|
|
68492
69147
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69148
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68493
69149
|
};
|
|
68494
69150
|
contracts: {
|
|
68495
69151
|
L2ReverseRegistrar: {
|
|
@@ -68579,9 +69235,18 @@ declare const _default$2: {
|
|
|
68579
69235
|
sourceId?: number | undefined | undefined;
|
|
68580
69236
|
testnet: false;
|
|
68581
69237
|
custom?: Record<string, unknown> | undefined;
|
|
69238
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68582
69239
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68583
69240
|
formatters?: undefined;
|
|
69241
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69242
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69243
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69244
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69245
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69246
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69247
|
+
}] | undefined;
|
|
68584
69248
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69249
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68585
69250
|
};
|
|
68586
69251
|
contracts: {
|
|
68587
69252
|
L2ReverseRegistrar: {
|
|
@@ -68671,9 +69336,18 @@ declare const _default$2: {
|
|
|
68671
69336
|
sourceId?: number | undefined | undefined;
|
|
68672
69337
|
testnet?: boolean | undefined | undefined;
|
|
68673
69338
|
custom?: Record<string, unknown> | undefined;
|
|
69339
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68674
69340
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68675
69341
|
formatters?: undefined;
|
|
69342
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69343
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69344
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69345
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69346
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69347
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69348
|
+
}] | undefined;
|
|
68676
69349
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69350
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68677
69351
|
};
|
|
68678
69352
|
contracts: {
|
|
68679
69353
|
Seaport1_5: {
|
|
@@ -71006,9 +71680,18 @@ declare const _default$1: {
|
|
|
71006
71680
|
sourceId?: number | undefined | undefined;
|
|
71007
71681
|
testnet: true;
|
|
71008
71682
|
custom?: Record<string, unknown> | undefined;
|
|
71683
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
71009
71684
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
71010
71685
|
formatters?: undefined;
|
|
71686
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
71687
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
71688
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
71689
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
71690
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
71691
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
71692
|
+
}] | undefined;
|
|
71011
71693
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
71694
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
71012
71695
|
};
|
|
71013
71696
|
contracts: {
|
|
71014
71697
|
ENSv1RegistryOld: {
|
|
@@ -78719,9 +79402,6 @@ declare const _default$1: {
|
|
|
78719
79402
|
*
|
|
78720
79403
|
* The owner of 'basetest.eth' in the ENS Registry on the Sepolia ENS namespace
|
|
78721
79404
|
* (e.g. Coinbase) has the ability to change this configuration at any time.
|
|
78722
|
-
*
|
|
78723
|
-
* See the reference documentation for additional context:
|
|
78724
|
-
* docs/ensnode/src/content/docs/reference/mainnet-registered-subnames-of-subregistries.mdx
|
|
78725
79405
|
*/
|
|
78726
79406
|
chain: {
|
|
78727
79407
|
blockExplorers: {
|
|
@@ -78795,6 +79475,7 @@ declare const _default$1: {
|
|
|
78795
79475
|
sourceId: 11155111;
|
|
78796
79476
|
testnet: true;
|
|
78797
79477
|
custom?: Record<string, unknown> | undefined;
|
|
79478
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
78798
79479
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
78799
79480
|
formatters: {
|
|
78800
79481
|
readonly block: {
|
|
@@ -78835,6 +79516,7 @@ declare const _default$1: {
|
|
|
78835
79516
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
78836
79517
|
blockHash: `0x${string}` | null;
|
|
78837
79518
|
blockNumber: bigint | null;
|
|
79519
|
+
blockTimestamp?: bigint | undefined;
|
|
78838
79520
|
from: viem.Address;
|
|
78839
79521
|
gas: bigint;
|
|
78840
79522
|
hash: viem.Hash;
|
|
@@ -78860,16 +79542,17 @@ declare const _default$1: {
|
|
|
78860
79542
|
r: viem.Hex;
|
|
78861
79543
|
s: viem.Hex;
|
|
78862
79544
|
v: bigint;
|
|
78863
|
-
value: bigint;
|
|
78864
|
-
gas: bigint;
|
|
78865
79545
|
to: viem.Address | null;
|
|
78866
79546
|
from: viem.Address;
|
|
79547
|
+
gas: bigint;
|
|
78867
79548
|
nonce: number;
|
|
79549
|
+
value: bigint;
|
|
78868
79550
|
blockHash: `0x${string}` | null;
|
|
78869
79551
|
blockNumber: bigint | null;
|
|
78870
|
-
|
|
79552
|
+
blockTimestamp?: bigint | undefined;
|
|
78871
79553
|
hash: viem.Hash;
|
|
78872
79554
|
input: viem.Hex;
|
|
79555
|
+
transactionIndex: number | null;
|
|
78873
79556
|
typeHex: viem.Hex | null;
|
|
78874
79557
|
accessList?: undefined | undefined;
|
|
78875
79558
|
authorizationList?: undefined | undefined;
|
|
@@ -78887,6 +79570,7 @@ declare const _default$1: {
|
|
|
78887
79570
|
} | {
|
|
78888
79571
|
blockHash: `0x${string}` | null;
|
|
78889
79572
|
blockNumber: bigint | null;
|
|
79573
|
+
blockTimestamp?: bigint | undefined;
|
|
78890
79574
|
from: viem.Address;
|
|
78891
79575
|
gas: bigint;
|
|
78892
79576
|
hash: viem.Hash;
|
|
@@ -78915,6 +79599,7 @@ declare const _default$1: {
|
|
|
78915
79599
|
} | {
|
|
78916
79600
|
blockHash: `0x${string}` | null;
|
|
78917
79601
|
blockNumber: bigint | null;
|
|
79602
|
+
blockTimestamp?: bigint | undefined;
|
|
78918
79603
|
from: viem.Address;
|
|
78919
79604
|
gas: bigint;
|
|
78920
79605
|
hash: viem.Hash;
|
|
@@ -78943,6 +79628,7 @@ declare const _default$1: {
|
|
|
78943
79628
|
} | {
|
|
78944
79629
|
blockHash: `0x${string}` | null;
|
|
78945
79630
|
blockNumber: bigint | null;
|
|
79631
|
+
blockTimestamp?: bigint | undefined;
|
|
78946
79632
|
from: viem.Address;
|
|
78947
79633
|
gas: bigint;
|
|
78948
79634
|
hash: viem.Hash;
|
|
@@ -78971,6 +79657,7 @@ declare const _default$1: {
|
|
|
78971
79657
|
} | {
|
|
78972
79658
|
blockHash: `0x${string}` | null;
|
|
78973
79659
|
blockNumber: bigint | null;
|
|
79660
|
+
blockTimestamp?: bigint | undefined;
|
|
78974
79661
|
from: viem.Address;
|
|
78975
79662
|
gas: bigint;
|
|
78976
79663
|
hash: viem.Hash;
|
|
@@ -79006,6 +79693,7 @@ declare const _default$1: {
|
|
|
79006
79693
|
blobGasUsed?: bigint | undefined;
|
|
79007
79694
|
blockHash: viem.Hash;
|
|
79008
79695
|
blockNumber: bigint;
|
|
79696
|
+
blockTimestamp?: bigint | undefined;
|
|
79009
79697
|
contractAddress: viem.Address | null | undefined;
|
|
79010
79698
|
cumulativeGasUsed: bigint;
|
|
79011
79699
|
effectiveGasPrice: bigint;
|
|
@@ -79027,9 +79715,17 @@ declare const _default$1: {
|
|
|
79027
79715
|
type: "transactionReceipt";
|
|
79028
79716
|
};
|
|
79029
79717
|
};
|
|
79718
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
79719
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
79720
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
79721
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
79722
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
79723
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
79724
|
+
}] | undefined;
|
|
79030
79725
|
serializers: {
|
|
79031
79726
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
79032
79727
|
};
|
|
79728
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
79033
79729
|
readonly network: "base-sepolia";
|
|
79034
79730
|
};
|
|
79035
79731
|
contracts: {
|
|
@@ -83697,9 +84393,6 @@ declare const _default$1: {
|
|
|
83697
84393
|
*
|
|
83698
84394
|
* The owner of 'linea-sepolia.eth' in the ENS Registry on the Sepolia ENS namespace
|
|
83699
84395
|
* (e.g. Consensys) has the ability to change this configuration at any time.
|
|
83700
|
-
*
|
|
83701
|
-
* See the reference documentation for additional context:
|
|
83702
|
-
* docs/ensnode/src/content/docs/reference/mainnet-registered-subnames-of-subregistries.mdx
|
|
83703
84396
|
*/
|
|
83704
84397
|
chain: {
|
|
83705
84398
|
blockExplorers: {
|
|
@@ -83742,12 +84435,21 @@ declare const _default$1: {
|
|
|
83742
84435
|
sourceId?: number | undefined | undefined;
|
|
83743
84436
|
testnet: true;
|
|
83744
84437
|
custom?: Record<string, unknown> | undefined;
|
|
84438
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
83745
84439
|
fees: {
|
|
83746
84440
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
83747
84441
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
83748
84442
|
};
|
|
83749
84443
|
formatters?: undefined;
|
|
84444
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
84445
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
84446
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
84447
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
84448
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
84449
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
84450
|
+
}] | undefined;
|
|
83750
84451
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
84452
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
83751
84453
|
};
|
|
83752
84454
|
contracts: {
|
|
83753
84455
|
Registry: {
|
|
@@ -87710,9 +88412,18 @@ declare const _default$1: {
|
|
|
87710
88412
|
sourceId?: number | undefined | undefined;
|
|
87711
88413
|
testnet: true;
|
|
87712
88414
|
custom?: Record<string, unknown> | undefined;
|
|
88415
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
87713
88416
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
87714
88417
|
formatters?: undefined;
|
|
88418
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
88419
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
88420
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
88421
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
88422
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
88423
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
88424
|
+
}] | undefined;
|
|
87715
88425
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
88426
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
87716
88427
|
};
|
|
87717
88428
|
contracts: {
|
|
87718
88429
|
DefaultReverseRegistrar: {
|
|
@@ -100227,6 +100938,7 @@ declare const _default$1: {
|
|
|
100227
100938
|
sourceId: 11155111;
|
|
100228
100939
|
testnet: true;
|
|
100229
100940
|
custom?: Record<string, unknown> | undefined;
|
|
100941
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
100230
100942
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
100231
100943
|
formatters: {
|
|
100232
100944
|
readonly block: {
|
|
@@ -100267,6 +100979,7 @@ declare const _default$1: {
|
|
|
100267
100979
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
100268
100980
|
blockHash: `0x${string}` | null;
|
|
100269
100981
|
blockNumber: bigint | null;
|
|
100982
|
+
blockTimestamp?: bigint | undefined;
|
|
100270
100983
|
from: viem.Address;
|
|
100271
100984
|
gas: bigint;
|
|
100272
100985
|
hash: viem.Hash;
|
|
@@ -100292,16 +101005,17 @@ declare const _default$1: {
|
|
|
100292
101005
|
r: viem.Hex;
|
|
100293
101006
|
s: viem.Hex;
|
|
100294
101007
|
v: bigint;
|
|
100295
|
-
value: bigint;
|
|
100296
|
-
gas: bigint;
|
|
100297
101008
|
to: viem.Address | null;
|
|
100298
101009
|
from: viem.Address;
|
|
101010
|
+
gas: bigint;
|
|
100299
101011
|
nonce: number;
|
|
101012
|
+
value: bigint;
|
|
100300
101013
|
blockHash: `0x${string}` | null;
|
|
100301
101014
|
blockNumber: bigint | null;
|
|
100302
|
-
|
|
101015
|
+
blockTimestamp?: bigint | undefined;
|
|
100303
101016
|
hash: viem.Hash;
|
|
100304
101017
|
input: viem.Hex;
|
|
101018
|
+
transactionIndex: number | null;
|
|
100305
101019
|
typeHex: viem.Hex | null;
|
|
100306
101020
|
accessList?: undefined | undefined;
|
|
100307
101021
|
authorizationList?: undefined | undefined;
|
|
@@ -100319,6 +101033,7 @@ declare const _default$1: {
|
|
|
100319
101033
|
} | {
|
|
100320
101034
|
blockHash: `0x${string}` | null;
|
|
100321
101035
|
blockNumber: bigint | null;
|
|
101036
|
+
blockTimestamp?: bigint | undefined;
|
|
100322
101037
|
from: viem.Address;
|
|
100323
101038
|
gas: bigint;
|
|
100324
101039
|
hash: viem.Hash;
|
|
@@ -100347,6 +101062,7 @@ declare const _default$1: {
|
|
|
100347
101062
|
} | {
|
|
100348
101063
|
blockHash: `0x${string}` | null;
|
|
100349
101064
|
blockNumber: bigint | null;
|
|
101065
|
+
blockTimestamp?: bigint | undefined;
|
|
100350
101066
|
from: viem.Address;
|
|
100351
101067
|
gas: bigint;
|
|
100352
101068
|
hash: viem.Hash;
|
|
@@ -100375,6 +101091,7 @@ declare const _default$1: {
|
|
|
100375
101091
|
} | {
|
|
100376
101092
|
blockHash: `0x${string}` | null;
|
|
100377
101093
|
blockNumber: bigint | null;
|
|
101094
|
+
blockTimestamp?: bigint | undefined;
|
|
100378
101095
|
from: viem.Address;
|
|
100379
101096
|
gas: bigint;
|
|
100380
101097
|
hash: viem.Hash;
|
|
@@ -100403,6 +101120,7 @@ declare const _default$1: {
|
|
|
100403
101120
|
} | {
|
|
100404
101121
|
blockHash: `0x${string}` | null;
|
|
100405
101122
|
blockNumber: bigint | null;
|
|
101123
|
+
blockTimestamp?: bigint | undefined;
|
|
100406
101124
|
from: viem.Address;
|
|
100407
101125
|
gas: bigint;
|
|
100408
101126
|
hash: viem.Hash;
|
|
@@ -100438,6 +101156,7 @@ declare const _default$1: {
|
|
|
100438
101156
|
blobGasUsed?: bigint | undefined;
|
|
100439
101157
|
blockHash: viem.Hash;
|
|
100440
101158
|
blockNumber: bigint;
|
|
101159
|
+
blockTimestamp?: bigint | undefined;
|
|
100441
101160
|
contractAddress: viem.Address | null | undefined;
|
|
100442
101161
|
cumulativeGasUsed: bigint;
|
|
100443
101162
|
effectiveGasPrice: bigint;
|
|
@@ -100459,9 +101178,17 @@ declare const _default$1: {
|
|
|
100459
101178
|
type: "transactionReceipt";
|
|
100460
101179
|
};
|
|
100461
101180
|
};
|
|
101181
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
101182
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
101183
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
101184
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
101185
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
101186
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
101187
|
+
}] | undefined;
|
|
100462
101188
|
serializers: {
|
|
100463
101189
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
100464
101190
|
};
|
|
101191
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
100465
101192
|
readonly network: "base-sepolia";
|
|
100466
101193
|
};
|
|
100467
101194
|
contracts: {
|
|
@@ -101667,6 +102394,7 @@ declare const _default$1: {
|
|
|
101667
102394
|
sourceId: 11155111;
|
|
101668
102395
|
testnet: true;
|
|
101669
102396
|
custom?: Record<string, unknown> | undefined;
|
|
102397
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
101670
102398
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
101671
102399
|
formatters: {
|
|
101672
102400
|
readonly block: {
|
|
@@ -101707,6 +102435,7 @@ declare const _default$1: {
|
|
|
101707
102435
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
101708
102436
|
blockHash: `0x${string}` | null;
|
|
101709
102437
|
blockNumber: bigint | null;
|
|
102438
|
+
blockTimestamp?: bigint | undefined;
|
|
101710
102439
|
from: viem.Address;
|
|
101711
102440
|
gas: bigint;
|
|
101712
102441
|
hash: viem.Hash;
|
|
@@ -101732,16 +102461,17 @@ declare const _default$1: {
|
|
|
101732
102461
|
r: viem.Hex;
|
|
101733
102462
|
s: viem.Hex;
|
|
101734
102463
|
v: bigint;
|
|
101735
|
-
value: bigint;
|
|
101736
|
-
gas: bigint;
|
|
101737
102464
|
to: viem.Address | null;
|
|
101738
102465
|
from: viem.Address;
|
|
102466
|
+
gas: bigint;
|
|
101739
102467
|
nonce: number;
|
|
102468
|
+
value: bigint;
|
|
101740
102469
|
blockHash: `0x${string}` | null;
|
|
101741
102470
|
blockNumber: bigint | null;
|
|
101742
|
-
|
|
102471
|
+
blockTimestamp?: bigint | undefined;
|
|
101743
102472
|
hash: viem.Hash;
|
|
101744
102473
|
input: viem.Hex;
|
|
102474
|
+
transactionIndex: number | null;
|
|
101745
102475
|
typeHex: viem.Hex | null;
|
|
101746
102476
|
accessList?: undefined | undefined;
|
|
101747
102477
|
authorizationList?: undefined | undefined;
|
|
@@ -101759,6 +102489,7 @@ declare const _default$1: {
|
|
|
101759
102489
|
} | {
|
|
101760
102490
|
blockHash: `0x${string}` | null;
|
|
101761
102491
|
blockNumber: bigint | null;
|
|
102492
|
+
blockTimestamp?: bigint | undefined;
|
|
101762
102493
|
from: viem.Address;
|
|
101763
102494
|
gas: bigint;
|
|
101764
102495
|
hash: viem.Hash;
|
|
@@ -101787,6 +102518,7 @@ declare const _default$1: {
|
|
|
101787
102518
|
} | {
|
|
101788
102519
|
blockHash: `0x${string}` | null;
|
|
101789
102520
|
blockNumber: bigint | null;
|
|
102521
|
+
blockTimestamp?: bigint | undefined;
|
|
101790
102522
|
from: viem.Address;
|
|
101791
102523
|
gas: bigint;
|
|
101792
102524
|
hash: viem.Hash;
|
|
@@ -101801,13 +102533,7 @@ declare const _default$1: {
|
|
|
101801
102533
|
value: bigint;
|
|
101802
102534
|
yParity: number;
|
|
101803
102535
|
accessList: viem.AccessList;
|
|
101804
|
-
authorizationList
|
|
101805
|
-
/**
|
|
101806
|
-
* Contracts that power Reverse Resolution on the (Sepolia) ENS Root chain.
|
|
101807
|
-
*/
|
|
101808
|
-
? /**
|
|
101809
|
-
* Contracts that power Reverse Resolution on the (Sepolia) ENS Root chain.
|
|
101810
|
-
*/: undefined | undefined;
|
|
102536
|
+
authorizationList?: undefined | undefined;
|
|
101811
102537
|
blobVersionedHashes?: undefined | undefined;
|
|
101812
102538
|
chainId: number;
|
|
101813
102539
|
type: "eip1559";
|
|
@@ -101821,6 +102547,7 @@ declare const _default$1: {
|
|
|
101821
102547
|
} | {
|
|
101822
102548
|
blockHash: `0x${string}` | null;
|
|
101823
102549
|
blockNumber: bigint | null;
|
|
102550
|
+
blockTimestamp?: bigint | undefined;
|
|
101824
102551
|
from: viem.Address;
|
|
101825
102552
|
gas: bigint;
|
|
101826
102553
|
hash: viem.Hash;
|
|
@@ -101849,6 +102576,7 @@ declare const _default$1: {
|
|
|
101849
102576
|
} | {
|
|
101850
102577
|
blockHash: `0x${string}` | null;
|
|
101851
102578
|
blockNumber: bigint | null;
|
|
102579
|
+
blockTimestamp?: bigint | undefined;
|
|
101852
102580
|
from: viem.Address;
|
|
101853
102581
|
gas: bigint;
|
|
101854
102582
|
hash: viem.Hash;
|
|
@@ -101884,6 +102612,7 @@ declare const _default$1: {
|
|
|
101884
102612
|
blobGasUsed?: bigint | undefined;
|
|
101885
102613
|
blockHash: viem.Hash;
|
|
101886
102614
|
blockNumber: bigint;
|
|
102615
|
+
blockTimestamp?: bigint | undefined;
|
|
101887
102616
|
contractAddress: viem.Address | null | undefined;
|
|
101888
102617
|
cumulativeGasUsed: bigint;
|
|
101889
102618
|
effectiveGasPrice: bigint;
|
|
@@ -101905,9 +102634,17 @@ declare const _default$1: {
|
|
|
101905
102634
|
type: "transactionReceipt";
|
|
101906
102635
|
};
|
|
101907
102636
|
};
|
|
102637
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
102638
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
102639
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
102640
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
102641
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
102642
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
102643
|
+
}] | undefined;
|
|
101908
102644
|
serializers: {
|
|
101909
102645
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
101910
102646
|
};
|
|
102647
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
101911
102648
|
};
|
|
101912
102649
|
contracts: {
|
|
101913
102650
|
L2ReverseRegistrar: {
|
|
@@ -103074,9 +103811,18 @@ declare const _default$1: {
|
|
|
103074
103811
|
sourceId?: number | undefined | undefined;
|
|
103075
103812
|
testnet: true;
|
|
103076
103813
|
custom?: Record<string, unknown> | undefined;
|
|
103814
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
103077
103815
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
103078
103816
|
formatters?: undefined;
|
|
103817
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
103818
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
103819
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
103820
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
103821
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
103822
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
103823
|
+
}] | undefined;
|
|
103079
103824
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
103825
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
103080
103826
|
};
|
|
103081
103827
|
contracts: {
|
|
103082
103828
|
L2ReverseRegistrar: {
|
|
@@ -104243,9 +104989,18 @@ declare const _default$1: {
|
|
|
104243
104989
|
sourceId?: number | undefined | undefined;
|
|
104244
104990
|
testnet: true;
|
|
104245
104991
|
custom?: Record<string, unknown> | undefined;
|
|
104992
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
104246
104993
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
104247
104994
|
formatters?: undefined;
|
|
104995
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
104996
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
104997
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
104998
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
104999
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
105000
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
105001
|
+
}] | undefined;
|
|
104248
105002
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
105003
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
104249
105004
|
};
|
|
104250
105005
|
contracts: {
|
|
104251
105006
|
L2ReverseRegistrar: {
|
|
@@ -105421,12 +106176,21 @@ declare const _default$1: {
|
|
|
105421
106176
|
sourceId?: number | undefined | undefined;
|
|
105422
106177
|
testnet: true;
|
|
105423
106178
|
custom?: Record<string, unknown> | undefined;
|
|
106179
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
105424
106180
|
fees: {
|
|
105425
106181
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
105426
106182
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
105427
106183
|
};
|
|
105428
106184
|
formatters?: undefined;
|
|
106185
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
106186
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
106187
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
106188
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
106189
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
106190
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
106191
|
+
}] | undefined;
|
|
105429
106192
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
106193
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
105430
106194
|
};
|
|
105431
106195
|
contracts: {
|
|
105432
106196
|
L2ReverseRegistrar: {
|
|
@@ -106594,9 +107358,18 @@ declare const _default$1: {
|
|
|
106594
107358
|
sourceId?: number | undefined | undefined;
|
|
106595
107359
|
testnet: true;
|
|
106596
107360
|
custom?: Record<string, unknown> | undefined;
|
|
107361
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
106597
107362
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
106598
107363
|
formatters?: undefined;
|
|
107364
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
107365
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
107366
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
107367
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
107368
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
107369
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
107370
|
+
}] | undefined;
|
|
106599
107371
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
107372
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
106600
107373
|
};
|
|
106601
107374
|
contracts: {
|
|
106602
107375
|
Seaport1_5: {
|
|
@@ -108930,9 +109703,18 @@ declare const _default: {
|
|
|
108930
109703
|
readonly sourceId?: number | undefined | undefined;
|
|
108931
109704
|
readonly testnet: true;
|
|
108932
109705
|
readonly custom?: Record<string, unknown> | undefined;
|
|
109706
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
108933
109707
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
108934
109708
|
readonly formatters?: undefined;
|
|
109709
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
109710
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
109711
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
109712
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
109713
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
109714
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
109715
|
+
}] | undefined;
|
|
108935
109716
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
109717
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
108936
109718
|
};
|
|
108937
109719
|
contracts: {
|
|
108938
109720
|
ENSv1RegistryOld: {
|
|
@@ -114170,7 +114952,7 @@ declare const _default: {
|
|
|
114170
114952
|
readonly internalType: "bytes4";
|
|
114171
114953
|
}];
|
|
114172
114954
|
}];
|
|
114173
|
-
address: "
|
|
114955
|
+
address: "0xfef81312438b7e578ee94bf0e8fa5c2547653d7c";
|
|
114174
114956
|
startBlock: number;
|
|
114175
114957
|
};
|
|
114176
114958
|
};
|
|
@@ -114212,9 +114994,18 @@ declare const _default: {
|
|
|
114212
114994
|
readonly sourceId?: number | undefined | undefined;
|
|
114213
114995
|
readonly testnet: true;
|
|
114214
114996
|
readonly custom?: Record<string, unknown> | undefined;
|
|
114997
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
114215
114998
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
114216
114999
|
readonly formatters?: undefined;
|
|
115000
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
115001
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115002
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
115003
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115004
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
115005
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
115006
|
+
}] | undefined;
|
|
114217
115007
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
115008
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
114218
115009
|
};
|
|
114219
115010
|
contracts: {
|
|
114220
115011
|
Resolver: {
|
|
@@ -118077,7 +118868,7 @@ declare const _default: {
|
|
|
118077
118868
|
readonly internalType: "address";
|
|
118078
118869
|
}];
|
|
118079
118870
|
}];
|
|
118080
|
-
address: "
|
|
118871
|
+
address: "0x078a7ae41974a74c62233bca5590c86218aa1f1e";
|
|
118081
118872
|
startBlock: number;
|
|
118082
118873
|
};
|
|
118083
118874
|
ETHRegistry: {
|
|
@@ -119275,7 +120066,7 @@ declare const _default: {
|
|
|
119275
120066
|
readonly internalType: "address";
|
|
119276
120067
|
}];
|
|
119277
120068
|
}];
|
|
119278
|
-
address: "
|
|
120069
|
+
address: "0xc328a01a4800fb52ec5a6ab4190356962ab719e5";
|
|
119279
120070
|
startBlock: number;
|
|
119280
120071
|
};
|
|
119281
120072
|
ETHRegistrar: {
|
|
@@ -120154,7 +120945,7 @@ declare const _default: {
|
|
|
120154
120945
|
readonly internalType: "bytes32";
|
|
120155
120946
|
}];
|
|
120156
120947
|
}];
|
|
120157
|
-
address: "
|
|
120948
|
+
address: "0xd859dac731dab4aecddb154b639d868dc951da62";
|
|
120158
120949
|
startBlock: number;
|
|
120159
120950
|
};
|
|
120160
120951
|
};
|
|
@@ -120196,9 +120987,18 @@ declare const _default: {
|
|
|
120196
120987
|
readonly sourceId?: number | undefined | undefined;
|
|
120197
120988
|
readonly testnet: true;
|
|
120198
120989
|
readonly custom?: Record<string, unknown> | undefined;
|
|
120990
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
120199
120991
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
120200
120992
|
readonly formatters?: undefined;
|
|
120993
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
120994
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
120995
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
120996
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
120997
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
120998
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
120999
|
+
}] | undefined;
|
|
120201
121000
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
121001
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
120202
121002
|
};
|
|
120203
121003
|
contracts: {
|
|
120204
121004
|
DefaultReverseRegistrar: {
|
|
@@ -129351,9 +130151,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129351
130151
|
readonly sourceId?: number | undefined | undefined;
|
|
129352
130152
|
readonly testnet?: boolean | undefined | undefined;
|
|
129353
130153
|
readonly custom?: Record<string, unknown> | undefined;
|
|
130154
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
129354
130155
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
129355
130156
|
readonly formatters?: undefined;
|
|
130157
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130158
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130159
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130160
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130161
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130162
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130163
|
+
}] | undefined;
|
|
129356
130164
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130165
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129357
130166
|
} | {
|
|
129358
130167
|
blockExplorers: {
|
|
129359
130168
|
readonly default: {
|
|
@@ -129390,9 +130199,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129390
130199
|
sourceId?: number | undefined | undefined;
|
|
129391
130200
|
testnet: true;
|
|
129392
130201
|
custom?: Record<string, unknown> | undefined;
|
|
130202
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
129393
130203
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
129394
130204
|
formatters?: undefined;
|
|
130205
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130206
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130207
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130208
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130209
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130210
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130211
|
+
}] | undefined;
|
|
129395
130212
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130213
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129396
130214
|
} | {
|
|
129397
130215
|
readonly id: 99911155111;
|
|
129398
130216
|
readonly name: "Sepolia V2 (Virtual)";
|
|
@@ -129429,9 +130247,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129429
130247
|
readonly sourceId?: number | undefined | undefined;
|
|
129430
130248
|
readonly testnet: true;
|
|
129431
130249
|
readonly custom?: Record<string, unknown> | undefined;
|
|
130250
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
129432
130251
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
129433
130252
|
readonly formatters?: undefined;
|
|
130253
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130254
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130255
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130256
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130257
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130258
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130259
|
+
}] | undefined;
|
|
129434
130260
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130261
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129435
130262
|
} | {
|
|
129436
130263
|
blockExplorers: {
|
|
129437
130264
|
readonly default: {
|
|
@@ -129468,9 +130295,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129468
130295
|
sourceId?: number | undefined | undefined;
|
|
129469
130296
|
testnet?: boolean | undefined | undefined;
|
|
129470
130297
|
custom?: Record<string, unknown> | undefined;
|
|
130298
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
129471
130299
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
129472
130300
|
formatters?: undefined;
|
|
130301
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130302
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130303
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130304
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130305
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130306
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130307
|
+
}] | undefined;
|
|
129473
130308
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130309
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129474
130310
|
};
|
|
129475
130311
|
/**
|
|
129476
130312
|
* Returns the chain id for the ENS Root Datasource within the selected namespace.
|
|
@@ -129479,4 +130315,4 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129479
130315
|
*/
|
|
129480
130316
|
declare const getENSRootChainId: (namespaceId: ENSNamespaceId) => 1 | 31337 | 11155111 | 99911155111;
|
|
129481
130317
|
|
|
129482
|
-
export { AnyRegistrarABI, AnyRegistrarControllerABI, type ContractConfig, type Datasource, type DatasourceName, DatasourceNames, type ENSNamespace, type ENSNamespaceId, ENSNamespaceIds, ETHRegistrar as ETHRegistrarABI, EnhancedAccessControl as EnhancedAccessControlABI, type EventFilter, type ExtractDatasourceType, Registry as RegistryABI, ResolverABI, StandaloneReverseRegistrar as StandaloneReverseRegistrarABI, ThreeDNSToken as ThreeDNSTokenABI, UniversalResolverABI, ensTestEnvChain, getDatasource, getENSNamespace, getENSRootChain, getENSRootChainId, maybeGetDatasource, sepoliaV2Chain };
|
|
130318
|
+
export { AnyRegistrarABI, AnyRegistrarControllerABI, type ContractConfig, type Datasource, type DatasourceName, DatasourceNames, type ENSNamespace, type ENSNamespaceId, ENSNamespaceIds, ETHRegistrar as ETHRegistrarABI, EnhancedAccessControl as EnhancedAccessControlABI, type EventFilter, type ExtractDatasourceType, L2ReverseRegistrar as L2ReverseRegistrarABI, Registry as RegistryABI, ResolverABI, StandaloneReverseRegistrar as StandaloneReverseRegistrarABI, ThreeDNSToken as ThreeDNSTokenABI, UniversalResolverABI, ensTestEnvChain, getDatasource, getENSNamespace, getENSRootChain, getENSRootChainId, maybeGetDatasource, sepoliaV2Chain };
|