@ensnode/datasources 1.13.1 → 1.14.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 +892 -44
- package/dist/index.js +765 -19
- 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: {
|
|
@@ -36233,6 +36788,7 @@ declare const _default$2: {
|
|
|
36233
36788
|
sourceId: 1;
|
|
36234
36789
|
testnet?: boolean | undefined | undefined;
|
|
36235
36790
|
custom?: Record<string, unknown> | undefined;
|
|
36791
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
36236
36792
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
36237
36793
|
formatters: {
|
|
36238
36794
|
readonly block: {
|
|
@@ -36273,6 +36829,7 @@ declare const _default$2: {
|
|
|
36273
36829
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
36274
36830
|
blockHash: `0x${string}` | null;
|
|
36275
36831
|
blockNumber: bigint | null;
|
|
36832
|
+
blockTimestamp?: bigint | undefined;
|
|
36276
36833
|
from: viem.Address;
|
|
36277
36834
|
gas: bigint;
|
|
36278
36835
|
hash: viem.Hash;
|
|
@@ -36298,16 +36855,17 @@ declare const _default$2: {
|
|
|
36298
36855
|
r: viem.Hex;
|
|
36299
36856
|
s: viem.Hex;
|
|
36300
36857
|
v: bigint;
|
|
36301
|
-
value: bigint;
|
|
36302
|
-
gas: bigint;
|
|
36303
36858
|
to: viem.Address | null;
|
|
36304
36859
|
from: viem.Address;
|
|
36860
|
+
gas: bigint;
|
|
36305
36861
|
nonce: number;
|
|
36862
|
+
value: bigint;
|
|
36306
36863
|
blockHash: `0x${string}` | null;
|
|
36307
36864
|
blockNumber: bigint | null;
|
|
36308
|
-
|
|
36865
|
+
blockTimestamp?: bigint | undefined;
|
|
36309
36866
|
hash: viem.Hash;
|
|
36310
36867
|
input: viem.Hex;
|
|
36868
|
+
transactionIndex: number | null;
|
|
36311
36869
|
typeHex: viem.Hex | null;
|
|
36312
36870
|
accessList?: undefined | undefined;
|
|
36313
36871
|
authorizationList?: undefined | undefined;
|
|
@@ -36321,13 +36879,11 @@ declare const _default$2: {
|
|
|
36321
36879
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
36322
36880
|
isSystemTx?: undefined | undefined;
|
|
36323
36881
|
mint?: undefined | undefined;
|
|
36324
|
-
sourceHash
|
|
36325
|
-
* This controller was removed from BaseRegistrar contract
|
|
36326
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
36327
|
-
*/: undefined | undefined;
|
|
36882
|
+
sourceHash?: undefined | undefined;
|
|
36328
36883
|
} | {
|
|
36329
36884
|
blockHash: `0x${string}` | null;
|
|
36330
36885
|
blockNumber: bigint | null;
|
|
36886
|
+
blockTimestamp?: bigint | undefined;
|
|
36331
36887
|
from: viem.Address;
|
|
36332
36888
|
gas: bigint;
|
|
36333
36889
|
hash: viem.Hash;
|
|
@@ -36356,6 +36912,7 @@ declare const _default$2: {
|
|
|
36356
36912
|
} | {
|
|
36357
36913
|
blockHash: `0x${string}` | null;
|
|
36358
36914
|
blockNumber: bigint | null;
|
|
36915
|
+
blockTimestamp?: bigint | undefined;
|
|
36359
36916
|
from: viem.Address;
|
|
36360
36917
|
gas: bigint;
|
|
36361
36918
|
hash: viem.Hash;
|
|
@@ -36384,6 +36941,7 @@ declare const _default$2: {
|
|
|
36384
36941
|
} | {
|
|
36385
36942
|
blockHash: `0x${string}` | null;
|
|
36386
36943
|
blockNumber: bigint | null;
|
|
36944
|
+
blockTimestamp?: bigint | undefined;
|
|
36387
36945
|
from: viem.Address;
|
|
36388
36946
|
gas: bigint;
|
|
36389
36947
|
hash: viem.Hash;
|
|
@@ -36412,6 +36970,7 @@ declare const _default$2: {
|
|
|
36412
36970
|
} | {
|
|
36413
36971
|
blockHash: `0x${string}` | null;
|
|
36414
36972
|
blockNumber: bigint | null;
|
|
36973
|
+
blockTimestamp?: bigint | undefined;
|
|
36415
36974
|
from: viem.Address;
|
|
36416
36975
|
gas: bigint;
|
|
36417
36976
|
hash: viem.Hash;
|
|
@@ -36447,6 +37006,7 @@ declare const _default$2: {
|
|
|
36447
37006
|
blobGasUsed?: bigint | undefined;
|
|
36448
37007
|
blockHash: viem.Hash;
|
|
36449
37008
|
blockNumber: bigint;
|
|
37009
|
+
blockTimestamp?: bigint | undefined;
|
|
36450
37010
|
contractAddress: viem.Address | null | undefined;
|
|
36451
37011
|
cumulativeGasUsed: bigint;
|
|
36452
37012
|
effectiveGasPrice: bigint;
|
|
@@ -36468,9 +37028,17 @@ declare const _default$2: {
|
|
|
36468
37028
|
type: "transactionReceipt";
|
|
36469
37029
|
};
|
|
36470
37030
|
};
|
|
37031
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
37032
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
37033
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
37034
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
37035
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
37036
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
37037
|
+
}] | undefined;
|
|
36471
37038
|
serializers: {
|
|
36472
37039
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
36473
37040
|
};
|
|
37041
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
36474
37042
|
};
|
|
36475
37043
|
contracts: {
|
|
36476
37044
|
Registry: {
|
|
@@ -43439,12 +44007,21 @@ declare const _default$2: {
|
|
|
43439
44007
|
sourceId?: number | undefined | undefined;
|
|
43440
44008
|
testnet: false;
|
|
43441
44009
|
custom?: Record<string, unknown> | undefined;
|
|
44010
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
43442
44011
|
fees: {
|
|
43443
44012
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
43444
44013
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
43445
44014
|
};
|
|
43446
44015
|
formatters?: undefined;
|
|
44016
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
44017
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
44018
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
44019
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
44020
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
44021
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
44022
|
+
}] | undefined;
|
|
43447
44023
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
44024
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
43448
44025
|
};
|
|
43449
44026
|
contracts: {
|
|
43450
44027
|
Registry: {
|
|
@@ -48568,6 +49145,7 @@ declare const _default$2: {
|
|
|
48568
49145
|
sourceId: 1;
|
|
48569
49146
|
testnet?: boolean | undefined | undefined;
|
|
48570
49147
|
custom?: Record<string, unknown> | undefined;
|
|
49148
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
48571
49149
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
48572
49150
|
formatters: {
|
|
48573
49151
|
readonly block: {
|
|
@@ -48608,6 +49186,7 @@ declare const _default$2: {
|
|
|
48608
49186
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
48609
49187
|
blockHash: `0x${string}` | null;
|
|
48610
49188
|
blockNumber: bigint | null;
|
|
49189
|
+
blockTimestamp?: bigint | undefined;
|
|
48611
49190
|
from: viem.Address;
|
|
48612
49191
|
gas: bigint;
|
|
48613
49192
|
hash: viem.Hash;
|
|
@@ -48633,16 +49212,17 @@ declare const _default$2: {
|
|
|
48633
49212
|
r: viem.Hex;
|
|
48634
49213
|
s: viem.Hex;
|
|
48635
49214
|
v: bigint;
|
|
48636
|
-
value: bigint;
|
|
48637
|
-
gas: bigint;
|
|
48638
49215
|
to: viem.Address | null;
|
|
48639
49216
|
from: viem.Address;
|
|
49217
|
+
gas: bigint;
|
|
48640
49218
|
nonce: number;
|
|
49219
|
+
value: bigint;
|
|
48641
49220
|
blockHash: `0x${string}` | null;
|
|
48642
49221
|
blockNumber: bigint | null;
|
|
48643
|
-
|
|
49222
|
+
blockTimestamp?: bigint | undefined;
|
|
48644
49223
|
hash: viem.Hash;
|
|
48645
49224
|
input: viem.Hex;
|
|
49225
|
+
transactionIndex: number | null;
|
|
48646
49226
|
typeHex: viem.Hex | null;
|
|
48647
49227
|
accessList?: undefined | undefined;
|
|
48648
49228
|
authorizationList?: undefined | undefined;
|
|
@@ -48660,6 +49240,7 @@ declare const _default$2: {
|
|
|
48660
49240
|
} | {
|
|
48661
49241
|
blockHash: `0x${string}` | null;
|
|
48662
49242
|
blockNumber: bigint | null;
|
|
49243
|
+
blockTimestamp?: bigint | undefined;
|
|
48663
49244
|
from: viem.Address;
|
|
48664
49245
|
gas: bigint;
|
|
48665
49246
|
hash: viem.Hash;
|
|
@@ -48688,6 +49269,7 @@ declare const _default$2: {
|
|
|
48688
49269
|
} | {
|
|
48689
49270
|
blockHash: `0x${string}` | null;
|
|
48690
49271
|
blockNumber: bigint | null;
|
|
49272
|
+
blockTimestamp?: bigint | undefined;
|
|
48691
49273
|
from: viem.Address;
|
|
48692
49274
|
gas: bigint;
|
|
48693
49275
|
hash: viem.Hash;
|
|
@@ -48716,6 +49298,7 @@ declare const _default$2: {
|
|
|
48716
49298
|
} | {
|
|
48717
49299
|
blockHash: `0x${string}` | null;
|
|
48718
49300
|
blockNumber: bigint | null;
|
|
49301
|
+
blockTimestamp?: bigint | undefined;
|
|
48719
49302
|
from: viem.Address;
|
|
48720
49303
|
gas: bigint;
|
|
48721
49304
|
hash: viem.Hash;
|
|
@@ -48744,6 +49327,7 @@ declare const _default$2: {
|
|
|
48744
49327
|
} | {
|
|
48745
49328
|
blockHash: `0x${string}` | null;
|
|
48746
49329
|
blockNumber: bigint | null;
|
|
49330
|
+
blockTimestamp?: bigint | undefined;
|
|
48747
49331
|
from: viem.Address;
|
|
48748
49332
|
gas: bigint;
|
|
48749
49333
|
hash: viem.Hash;
|
|
@@ -48779,6 +49363,7 @@ declare const _default$2: {
|
|
|
48779
49363
|
blobGasUsed?: bigint | undefined;
|
|
48780
49364
|
blockHash: viem.Hash;
|
|
48781
49365
|
blockNumber: bigint;
|
|
49366
|
+
blockTimestamp?: bigint | undefined;
|
|
48782
49367
|
contractAddress: viem.Address | null | undefined;
|
|
48783
49368
|
cumulativeGasUsed: bigint;
|
|
48784
49369
|
effectiveGasPrice: bigint;
|
|
@@ -48800,9 +49385,17 @@ declare const _default$2: {
|
|
|
48800
49385
|
type: "transactionReceipt";
|
|
48801
49386
|
};
|
|
48802
49387
|
};
|
|
49388
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
49389
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
49390
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
49391
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
49392
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
49393
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
49394
|
+
}] | undefined;
|
|
48803
49395
|
serializers: {
|
|
48804
49396
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
48805
49397
|
};
|
|
49398
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
48806
49399
|
};
|
|
48807
49400
|
contracts: {
|
|
48808
49401
|
ThreeDNSToken: {
|
|
@@ -50202,6 +50795,7 @@ declare const _default$2: {
|
|
|
50202
50795
|
sourceId: 1;
|
|
50203
50796
|
testnet?: boolean | undefined | undefined;
|
|
50204
50797
|
custom?: Record<string, unknown> | undefined;
|
|
50798
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
50205
50799
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
50206
50800
|
formatters: {
|
|
50207
50801
|
readonly block: {
|
|
@@ -50242,6 +50836,7 @@ declare const _default$2: {
|
|
|
50242
50836
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
50243
50837
|
blockHash: `0x${string}` | null;
|
|
50244
50838
|
blockNumber: bigint | null;
|
|
50839
|
+
blockTimestamp?: bigint | undefined;
|
|
50245
50840
|
from: viem.Address;
|
|
50246
50841
|
gas: bigint;
|
|
50247
50842
|
hash: viem.Hash;
|
|
@@ -50267,16 +50862,17 @@ declare const _default$2: {
|
|
|
50267
50862
|
r: viem.Hex;
|
|
50268
50863
|
s: viem.Hex;
|
|
50269
50864
|
v: bigint;
|
|
50270
|
-
value: bigint;
|
|
50271
|
-
gas: bigint;
|
|
50272
50865
|
to: viem.Address | null;
|
|
50273
50866
|
from: viem.Address;
|
|
50867
|
+
gas: bigint;
|
|
50274
50868
|
nonce: number;
|
|
50869
|
+
value: bigint;
|
|
50275
50870
|
blockHash: `0x${string}` | null;
|
|
50276
50871
|
blockNumber: bigint | null;
|
|
50277
|
-
|
|
50872
|
+
blockTimestamp?: bigint | undefined;
|
|
50278
50873
|
hash: viem.Hash;
|
|
50279
50874
|
input: viem.Hex;
|
|
50875
|
+
transactionIndex: number | null;
|
|
50280
50876
|
typeHex: viem.Hex | null;
|
|
50281
50877
|
accessList?: undefined | undefined;
|
|
50282
50878
|
authorizationList?: undefined | undefined;
|
|
@@ -50290,13 +50886,11 @@ declare const _default$2: {
|
|
|
50290
50886
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
50291
50887
|
isSystemTx?: undefined | undefined;
|
|
50292
50888
|
mint?: undefined | undefined;
|
|
50293
|
-
sourceHash
|
|
50294
|
-
* This controller was removed from BaseRegistrar contract
|
|
50295
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
50296
|
-
*/: undefined | undefined;
|
|
50889
|
+
sourceHash?: undefined | undefined;
|
|
50297
50890
|
} | {
|
|
50298
50891
|
blockHash: `0x${string}` | null;
|
|
50299
50892
|
blockNumber: bigint | null;
|
|
50893
|
+
blockTimestamp?: bigint | undefined;
|
|
50300
50894
|
from: viem.Address;
|
|
50301
50895
|
gas: bigint;
|
|
50302
50896
|
hash: viem.Hash;
|
|
@@ -50325,6 +50919,7 @@ declare const _default$2: {
|
|
|
50325
50919
|
} | {
|
|
50326
50920
|
blockHash: `0x${string}` | null;
|
|
50327
50921
|
blockNumber: bigint | null;
|
|
50922
|
+
blockTimestamp?: bigint | undefined;
|
|
50328
50923
|
from: viem.Address;
|
|
50329
50924
|
gas: bigint;
|
|
50330
50925
|
hash: viem.Hash;
|
|
@@ -50353,6 +50948,7 @@ declare const _default$2: {
|
|
|
50353
50948
|
} | {
|
|
50354
50949
|
blockHash: `0x${string}` | null;
|
|
50355
50950
|
blockNumber: bigint | null;
|
|
50951
|
+
blockTimestamp?: bigint | undefined;
|
|
50356
50952
|
from: viem.Address;
|
|
50357
50953
|
gas: bigint;
|
|
50358
50954
|
hash: viem.Hash;
|
|
@@ -50381,6 +50977,7 @@ declare const _default$2: {
|
|
|
50381
50977
|
} | {
|
|
50382
50978
|
blockHash: `0x${string}` | null;
|
|
50383
50979
|
blockNumber: bigint | null;
|
|
50980
|
+
blockTimestamp?: bigint | undefined;
|
|
50384
50981
|
from: viem.Address;
|
|
50385
50982
|
gas: bigint;
|
|
50386
50983
|
hash: viem.Hash;
|
|
@@ -50416,6 +51013,7 @@ declare const _default$2: {
|
|
|
50416
51013
|
blobGasUsed?: bigint | undefined;
|
|
50417
51014
|
blockHash: viem.Hash;
|
|
50418
51015
|
blockNumber: bigint;
|
|
51016
|
+
blockTimestamp?: bigint | undefined;
|
|
50419
51017
|
contractAddress: viem.Address | null | undefined;
|
|
50420
51018
|
cumulativeGasUsed: bigint;
|
|
50421
51019
|
effectiveGasPrice: bigint;
|
|
@@ -50437,9 +51035,17 @@ declare const _default$2: {
|
|
|
50437
51035
|
type: "transactionReceipt";
|
|
50438
51036
|
};
|
|
50439
51037
|
};
|
|
51038
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
51039
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
51040
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
51041
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
51042
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
51043
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
51044
|
+
}] | undefined;
|
|
50440
51045
|
serializers: {
|
|
50441
51046
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
50442
51047
|
};
|
|
51048
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
50443
51049
|
};
|
|
50444
51050
|
contracts: {
|
|
50445
51051
|
ThreeDNSToken: {
|
|
@@ -51802,9 +52408,18 @@ declare const _default$2: {
|
|
|
51802
52408
|
sourceId?: number | undefined | undefined;
|
|
51803
52409
|
testnet?: boolean | undefined | undefined;
|
|
51804
52410
|
custom?: Record<string, unknown> | undefined;
|
|
52411
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
51805
52412
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
51806
52413
|
formatters?: undefined;
|
|
52414
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
52415
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
52416
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
52417
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
52418
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
52419
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
52420
|
+
}] | undefined;
|
|
51807
52421
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
52422
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
51808
52423
|
};
|
|
51809
52424
|
contracts: {
|
|
51810
52425
|
DefaultReverseRegistrar: {
|
|
@@ -67697,6 +68312,7 @@ declare const _default$2: {
|
|
|
67697
68312
|
sourceId: 1;
|
|
67698
68313
|
testnet?: boolean | undefined | undefined;
|
|
67699
68314
|
custom?: Record<string, unknown> | undefined;
|
|
68315
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
67700
68316
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
67701
68317
|
formatters: {
|
|
67702
68318
|
readonly block: {
|
|
@@ -67737,6 +68353,7 @@ declare const _default$2: {
|
|
|
67737
68353
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
67738
68354
|
blockHash: `0x${string}` | null;
|
|
67739
68355
|
blockNumber: bigint | null;
|
|
68356
|
+
blockTimestamp?: bigint | undefined;
|
|
67740
68357
|
from: viem.Address;
|
|
67741
68358
|
gas: bigint;
|
|
67742
68359
|
hash: viem.Hash;
|
|
@@ -67762,16 +68379,17 @@ declare const _default$2: {
|
|
|
67762
68379
|
r: viem.Hex;
|
|
67763
68380
|
s: viem.Hex;
|
|
67764
68381
|
v: bigint;
|
|
67765
|
-
value: bigint;
|
|
67766
|
-
gas: bigint;
|
|
67767
68382
|
to: viem.Address | null;
|
|
67768
68383
|
from: viem.Address;
|
|
68384
|
+
gas: bigint;
|
|
67769
68385
|
nonce: number;
|
|
68386
|
+
value: bigint;
|
|
67770
68387
|
blockHash: `0x${string}` | null;
|
|
67771
68388
|
blockNumber: bigint | null;
|
|
67772
|
-
|
|
68389
|
+
blockTimestamp?: bigint | undefined;
|
|
67773
68390
|
hash: viem.Hash;
|
|
67774
68391
|
input: viem.Hex;
|
|
68392
|
+
transactionIndex: number | null;
|
|
67775
68393
|
typeHex: viem.Hex | null;
|
|
67776
68394
|
accessList?: undefined | undefined;
|
|
67777
68395
|
authorizationList?: undefined | undefined;
|
|
@@ -67785,13 +68403,11 @@ declare const _default$2: {
|
|
|
67785
68403
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
67786
68404
|
isSystemTx?: undefined | undefined;
|
|
67787
68405
|
mint?: undefined | undefined;
|
|
67788
|
-
sourceHash
|
|
67789
|
-
* This controller was removed from BaseRegistrar contract
|
|
67790
|
-
* https://basescan.org/tx/0x88a3cc03291bb1a4b2bd9ccfe6b770988470001905d96c32bd41b866797b684b
|
|
67791
|
-
*/: undefined | undefined;
|
|
68406
|
+
sourceHash?: undefined | undefined;
|
|
67792
68407
|
} | {
|
|
67793
68408
|
blockHash: `0x${string}` | null;
|
|
67794
68409
|
blockNumber: bigint | null;
|
|
68410
|
+
blockTimestamp?: bigint | undefined;
|
|
67795
68411
|
from: viem.Address;
|
|
67796
68412
|
gas: bigint;
|
|
67797
68413
|
hash: viem.Hash;
|
|
@@ -67820,6 +68436,7 @@ declare const _default$2: {
|
|
|
67820
68436
|
} | {
|
|
67821
68437
|
blockHash: `0x${string}` | null;
|
|
67822
68438
|
blockNumber: bigint | null;
|
|
68439
|
+
blockTimestamp?: bigint | undefined;
|
|
67823
68440
|
from: viem.Address;
|
|
67824
68441
|
gas: bigint;
|
|
67825
68442
|
hash: viem.Hash;
|
|
@@ -67848,6 +68465,7 @@ declare const _default$2: {
|
|
|
67848
68465
|
} | {
|
|
67849
68466
|
blockHash: `0x${string}` | null;
|
|
67850
68467
|
blockNumber: bigint | null;
|
|
68468
|
+
blockTimestamp?: bigint | undefined;
|
|
67851
68469
|
from: viem.Address;
|
|
67852
68470
|
gas: bigint;
|
|
67853
68471
|
hash: viem.Hash;
|
|
@@ -67876,6 +68494,7 @@ declare const _default$2: {
|
|
|
67876
68494
|
} | {
|
|
67877
68495
|
blockHash: `0x${string}` | null;
|
|
67878
68496
|
blockNumber: bigint | null;
|
|
68497
|
+
blockTimestamp?: bigint | undefined;
|
|
67879
68498
|
from: viem.Address;
|
|
67880
68499
|
gas: bigint;
|
|
67881
68500
|
hash: viem.Hash;
|
|
@@ -67911,6 +68530,7 @@ declare const _default$2: {
|
|
|
67911
68530
|
blobGasUsed?: bigint | undefined;
|
|
67912
68531
|
blockHash: viem.Hash;
|
|
67913
68532
|
blockNumber: bigint;
|
|
68533
|
+
blockTimestamp?: bigint | undefined;
|
|
67914
68534
|
contractAddress: viem.Address | null | undefined;
|
|
67915
68535
|
cumulativeGasUsed: bigint;
|
|
67916
68536
|
effectiveGasPrice: bigint;
|
|
@@ -67932,9 +68552,17 @@ declare const _default$2: {
|
|
|
67932
68552
|
type: "transactionReceipt";
|
|
67933
68553
|
};
|
|
67934
68554
|
};
|
|
68555
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68556
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68557
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68558
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68559
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
68560
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
68561
|
+
}] | undefined;
|
|
67935
68562
|
serializers: {
|
|
67936
68563
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
67937
68564
|
};
|
|
68565
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
67938
68566
|
};
|
|
67939
68567
|
contracts: {
|
|
67940
68568
|
L2ReverseRegistrar: {
|
|
@@ -68032,12 +68660,21 @@ declare const _default$2: {
|
|
|
68032
68660
|
sourceId?: number | undefined | undefined;
|
|
68033
68661
|
testnet: false;
|
|
68034
68662
|
custom?: Record<string, unknown> | undefined;
|
|
68663
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68035
68664
|
fees: {
|
|
68036
68665
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
68037
68666
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
68038
68667
|
};
|
|
68039
68668
|
formatters?: undefined;
|
|
68669
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68670
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68671
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
68672
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
68673
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
68674
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
68675
|
+
}] | undefined;
|
|
68040
68676
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
68677
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68041
68678
|
};
|
|
68042
68679
|
contracts: {
|
|
68043
68680
|
L2ReverseRegistrar: {
|
|
@@ -68164,6 +68801,7 @@ declare const _default$2: {
|
|
|
68164
68801
|
sourceId: 1;
|
|
68165
68802
|
testnet?: boolean | undefined | undefined;
|
|
68166
68803
|
custom?: Record<string, unknown> | undefined;
|
|
68804
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68167
68805
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68168
68806
|
formatters: {
|
|
68169
68807
|
readonly block: {
|
|
@@ -68204,6 +68842,7 @@ declare const _default$2: {
|
|
|
68204
68842
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
68205
68843
|
blockHash: `0x${string}` | null;
|
|
68206
68844
|
blockNumber: bigint | null;
|
|
68845
|
+
blockTimestamp?: bigint | undefined;
|
|
68207
68846
|
from: viem.Address;
|
|
68208
68847
|
gas: bigint;
|
|
68209
68848
|
hash: viem.Hash;
|
|
@@ -68229,16 +68868,17 @@ declare const _default$2: {
|
|
|
68229
68868
|
r: viem.Hex;
|
|
68230
68869
|
s: viem.Hex;
|
|
68231
68870
|
v: bigint;
|
|
68232
|
-
value: bigint;
|
|
68233
|
-
gas: bigint;
|
|
68234
68871
|
to: viem.Address | null;
|
|
68235
68872
|
from: viem.Address;
|
|
68873
|
+
gas: bigint;
|
|
68236
68874
|
nonce: number;
|
|
68875
|
+
value: bigint;
|
|
68237
68876
|
blockHash: `0x${string}` | null;
|
|
68238
68877
|
blockNumber: bigint | null;
|
|
68239
|
-
|
|
68878
|
+
blockTimestamp?: bigint | undefined;
|
|
68240
68879
|
hash: viem.Hash;
|
|
68241
68880
|
input: viem.Hex;
|
|
68881
|
+
transactionIndex: number | null;
|
|
68242
68882
|
typeHex: viem.Hex | null;
|
|
68243
68883
|
accessList?: undefined | undefined;
|
|
68244
68884
|
authorizationList?: undefined | undefined;
|
|
@@ -68256,6 +68896,7 @@ declare const _default$2: {
|
|
|
68256
68896
|
} | {
|
|
68257
68897
|
blockHash: `0x${string}` | null;
|
|
68258
68898
|
blockNumber: bigint | null;
|
|
68899
|
+
blockTimestamp?: bigint | undefined;
|
|
68259
68900
|
from: viem.Address;
|
|
68260
68901
|
gas: bigint;
|
|
68261
68902
|
hash: viem.Hash;
|
|
@@ -68284,6 +68925,7 @@ declare const _default$2: {
|
|
|
68284
68925
|
} | {
|
|
68285
68926
|
blockHash: `0x${string}` | null;
|
|
68286
68927
|
blockNumber: bigint | null;
|
|
68928
|
+
blockTimestamp?: bigint | undefined;
|
|
68287
68929
|
from: viem.Address;
|
|
68288
68930
|
gas: bigint;
|
|
68289
68931
|
hash: viem.Hash;
|
|
@@ -68312,6 +68954,7 @@ declare const _default$2: {
|
|
|
68312
68954
|
} | {
|
|
68313
68955
|
blockHash: `0x${string}` | null;
|
|
68314
68956
|
blockNumber: bigint | null;
|
|
68957
|
+
blockTimestamp?: bigint | undefined;
|
|
68315
68958
|
from: viem.Address;
|
|
68316
68959
|
gas: bigint;
|
|
68317
68960
|
hash: viem.Hash;
|
|
@@ -68340,6 +68983,7 @@ declare const _default$2: {
|
|
|
68340
68983
|
} | {
|
|
68341
68984
|
blockHash: `0x${string}` | null;
|
|
68342
68985
|
blockNumber: bigint | null;
|
|
68986
|
+
blockTimestamp?: bigint | undefined;
|
|
68343
68987
|
from: viem.Address;
|
|
68344
68988
|
gas: bigint;
|
|
68345
68989
|
hash: viem.Hash;
|
|
@@ -68375,6 +69019,7 @@ declare const _default$2: {
|
|
|
68375
69019
|
blobGasUsed?: bigint | undefined;
|
|
68376
69020
|
blockHash: viem.Hash;
|
|
68377
69021
|
blockNumber: bigint;
|
|
69022
|
+
blockTimestamp?: bigint | undefined;
|
|
68378
69023
|
contractAddress: viem.Address | null | undefined;
|
|
68379
69024
|
cumulativeGasUsed: bigint;
|
|
68380
69025
|
effectiveGasPrice: bigint;
|
|
@@ -68396,9 +69041,17 @@ declare const _default$2: {
|
|
|
68396
69041
|
type: "transactionReceipt";
|
|
68397
69042
|
};
|
|
68398
69043
|
};
|
|
69044
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69045
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69046
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69047
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69048
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69049
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69050
|
+
}] | undefined;
|
|
68399
69051
|
serializers: {
|
|
68400
69052
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
68401
69053
|
};
|
|
69054
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68402
69055
|
};
|
|
68403
69056
|
contracts: {
|
|
68404
69057
|
L2ReverseRegistrar: {
|
|
@@ -68487,9 +69140,18 @@ declare const _default$2: {
|
|
|
68487
69140
|
sourceId?: number | undefined | undefined;
|
|
68488
69141
|
testnet?: boolean | undefined | undefined;
|
|
68489
69142
|
custom?: Record<string, unknown> | undefined;
|
|
69143
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68490
69144
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68491
69145
|
formatters?: undefined;
|
|
69146
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69147
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69148
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69149
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69150
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69151
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69152
|
+
}] | undefined;
|
|
68492
69153
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69154
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68493
69155
|
};
|
|
68494
69156
|
contracts: {
|
|
68495
69157
|
L2ReverseRegistrar: {
|
|
@@ -68579,9 +69241,18 @@ declare const _default$2: {
|
|
|
68579
69241
|
sourceId?: number | undefined | undefined;
|
|
68580
69242
|
testnet: false;
|
|
68581
69243
|
custom?: Record<string, unknown> | undefined;
|
|
69244
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68582
69245
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68583
69246
|
formatters?: undefined;
|
|
69247
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69248
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69249
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69250
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69251
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69252
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69253
|
+
}] | undefined;
|
|
68584
69254
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69255
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68585
69256
|
};
|
|
68586
69257
|
contracts: {
|
|
68587
69258
|
L2ReverseRegistrar: {
|
|
@@ -68671,9 +69342,18 @@ declare const _default$2: {
|
|
|
68671
69342
|
sourceId?: number | undefined | undefined;
|
|
68672
69343
|
testnet?: boolean | undefined | undefined;
|
|
68673
69344
|
custom?: Record<string, unknown> | undefined;
|
|
69345
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
68674
69346
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
68675
69347
|
formatters?: undefined;
|
|
69348
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69349
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69350
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
69351
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
69352
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
69353
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
69354
|
+
}] | undefined;
|
|
68676
69355
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
69356
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
68677
69357
|
};
|
|
68678
69358
|
contracts: {
|
|
68679
69359
|
Seaport1_5: {
|
|
@@ -71006,9 +71686,18 @@ declare const _default$1: {
|
|
|
71006
71686
|
sourceId?: number | undefined | undefined;
|
|
71007
71687
|
testnet: true;
|
|
71008
71688
|
custom?: Record<string, unknown> | undefined;
|
|
71689
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
71009
71690
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
71010
71691
|
formatters?: undefined;
|
|
71692
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
71693
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
71694
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
71695
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
71696
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
71697
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
71698
|
+
}] | undefined;
|
|
71011
71699
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
71700
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
71012
71701
|
};
|
|
71013
71702
|
contracts: {
|
|
71014
71703
|
ENSv1RegistryOld: {
|
|
@@ -78795,6 +79484,7 @@ declare const _default$1: {
|
|
|
78795
79484
|
sourceId: 11155111;
|
|
78796
79485
|
testnet: true;
|
|
78797
79486
|
custom?: Record<string, unknown> | undefined;
|
|
79487
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
78798
79488
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
78799
79489
|
formatters: {
|
|
78800
79490
|
readonly block: {
|
|
@@ -78835,6 +79525,7 @@ declare const _default$1: {
|
|
|
78835
79525
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
78836
79526
|
blockHash: `0x${string}` | null;
|
|
78837
79527
|
blockNumber: bigint | null;
|
|
79528
|
+
blockTimestamp?: bigint | undefined;
|
|
78838
79529
|
from: viem.Address;
|
|
78839
79530
|
gas: bigint;
|
|
78840
79531
|
hash: viem.Hash;
|
|
@@ -78860,16 +79551,17 @@ declare const _default$1: {
|
|
|
78860
79551
|
r: viem.Hex;
|
|
78861
79552
|
s: viem.Hex;
|
|
78862
79553
|
v: bigint;
|
|
78863
|
-
value: bigint;
|
|
78864
|
-
gas: bigint;
|
|
78865
79554
|
to: viem.Address | null;
|
|
78866
79555
|
from: viem.Address;
|
|
79556
|
+
gas: bigint;
|
|
78867
79557
|
nonce: number;
|
|
79558
|
+
value: bigint;
|
|
78868
79559
|
blockHash: `0x${string}` | null;
|
|
78869
79560
|
blockNumber: bigint | null;
|
|
78870
|
-
|
|
79561
|
+
blockTimestamp?: bigint | undefined;
|
|
78871
79562
|
hash: viem.Hash;
|
|
78872
79563
|
input: viem.Hex;
|
|
79564
|
+
transactionIndex: number | null;
|
|
78873
79565
|
typeHex: viem.Hex | null;
|
|
78874
79566
|
accessList?: undefined | undefined;
|
|
78875
79567
|
authorizationList?: undefined | undefined;
|
|
@@ -78887,6 +79579,7 @@ declare const _default$1: {
|
|
|
78887
79579
|
} | {
|
|
78888
79580
|
blockHash: `0x${string}` | null;
|
|
78889
79581
|
blockNumber: bigint | null;
|
|
79582
|
+
blockTimestamp?: bigint | undefined;
|
|
78890
79583
|
from: viem.Address;
|
|
78891
79584
|
gas: bigint;
|
|
78892
79585
|
hash: viem.Hash;
|
|
@@ -78915,6 +79608,7 @@ declare const _default$1: {
|
|
|
78915
79608
|
} | {
|
|
78916
79609
|
blockHash: `0x${string}` | null;
|
|
78917
79610
|
blockNumber: bigint | null;
|
|
79611
|
+
blockTimestamp?: bigint | undefined;
|
|
78918
79612
|
from: viem.Address;
|
|
78919
79613
|
gas: bigint;
|
|
78920
79614
|
hash: viem.Hash;
|
|
@@ -78943,6 +79637,7 @@ declare const _default$1: {
|
|
|
78943
79637
|
} | {
|
|
78944
79638
|
blockHash: `0x${string}` | null;
|
|
78945
79639
|
blockNumber: bigint | null;
|
|
79640
|
+
blockTimestamp?: bigint | undefined;
|
|
78946
79641
|
from: viem.Address;
|
|
78947
79642
|
gas: bigint;
|
|
78948
79643
|
hash: viem.Hash;
|
|
@@ -78971,6 +79666,7 @@ declare const _default$1: {
|
|
|
78971
79666
|
} | {
|
|
78972
79667
|
blockHash: `0x${string}` | null;
|
|
78973
79668
|
blockNumber: bigint | null;
|
|
79669
|
+
blockTimestamp?: bigint | undefined;
|
|
78974
79670
|
from: viem.Address;
|
|
78975
79671
|
gas: bigint;
|
|
78976
79672
|
hash: viem.Hash;
|
|
@@ -79006,6 +79702,7 @@ declare const _default$1: {
|
|
|
79006
79702
|
blobGasUsed?: bigint | undefined;
|
|
79007
79703
|
blockHash: viem.Hash;
|
|
79008
79704
|
blockNumber: bigint;
|
|
79705
|
+
blockTimestamp?: bigint | undefined;
|
|
79009
79706
|
contractAddress: viem.Address | null | undefined;
|
|
79010
79707
|
cumulativeGasUsed: bigint;
|
|
79011
79708
|
effectiveGasPrice: bigint;
|
|
@@ -79027,9 +79724,17 @@ declare const _default$1: {
|
|
|
79027
79724
|
type: "transactionReceipt";
|
|
79028
79725
|
};
|
|
79029
79726
|
};
|
|
79727
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
79728
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
79729
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
79730
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
79731
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
79732
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
79733
|
+
}] | undefined;
|
|
79030
79734
|
serializers: {
|
|
79031
79735
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
79032
79736
|
};
|
|
79737
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
79033
79738
|
readonly network: "base-sepolia";
|
|
79034
79739
|
};
|
|
79035
79740
|
contracts: {
|
|
@@ -83742,12 +84447,21 @@ declare const _default$1: {
|
|
|
83742
84447
|
sourceId?: number | undefined | undefined;
|
|
83743
84448
|
testnet: true;
|
|
83744
84449
|
custom?: Record<string, unknown> | undefined;
|
|
84450
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
83745
84451
|
fees: {
|
|
83746
84452
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
83747
84453
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
83748
84454
|
};
|
|
83749
84455
|
formatters?: undefined;
|
|
84456
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
84457
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
84458
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
84459
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
84460
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
84461
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
84462
|
+
}] | undefined;
|
|
83750
84463
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
84464
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
83751
84465
|
};
|
|
83752
84466
|
contracts: {
|
|
83753
84467
|
Registry: {
|
|
@@ -87710,9 +88424,18 @@ declare const _default$1: {
|
|
|
87710
88424
|
sourceId?: number | undefined | undefined;
|
|
87711
88425
|
testnet: true;
|
|
87712
88426
|
custom?: Record<string, unknown> | undefined;
|
|
88427
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
87713
88428
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
87714
88429
|
formatters?: undefined;
|
|
88430
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
88431
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
88432
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
88433
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
88434
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
88435
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
88436
|
+
}] | undefined;
|
|
87715
88437
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
88438
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
87716
88439
|
};
|
|
87717
88440
|
contracts: {
|
|
87718
88441
|
DefaultReverseRegistrar: {
|
|
@@ -100227,6 +100950,7 @@ declare const _default$1: {
|
|
|
100227
100950
|
sourceId: 11155111;
|
|
100228
100951
|
testnet: true;
|
|
100229
100952
|
custom?: Record<string, unknown> | undefined;
|
|
100953
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
100230
100954
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
100231
100955
|
formatters: {
|
|
100232
100956
|
readonly block: {
|
|
@@ -100267,6 +100991,7 @@ declare const _default$1: {
|
|
|
100267
100991
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
100268
100992
|
blockHash: `0x${string}` | null;
|
|
100269
100993
|
blockNumber: bigint | null;
|
|
100994
|
+
blockTimestamp?: bigint | undefined;
|
|
100270
100995
|
from: viem.Address;
|
|
100271
100996
|
gas: bigint;
|
|
100272
100997
|
hash: viem.Hash;
|
|
@@ -100292,16 +101017,17 @@ declare const _default$1: {
|
|
|
100292
101017
|
r: viem.Hex;
|
|
100293
101018
|
s: viem.Hex;
|
|
100294
101019
|
v: bigint;
|
|
100295
|
-
value: bigint;
|
|
100296
|
-
gas: bigint;
|
|
100297
101020
|
to: viem.Address | null;
|
|
100298
101021
|
from: viem.Address;
|
|
101022
|
+
gas: bigint;
|
|
100299
101023
|
nonce: number;
|
|
101024
|
+
value: bigint;
|
|
100300
101025
|
blockHash: `0x${string}` | null;
|
|
100301
101026
|
blockNumber: bigint | null;
|
|
100302
|
-
|
|
101027
|
+
blockTimestamp?: bigint | undefined;
|
|
100303
101028
|
hash: viem.Hash;
|
|
100304
101029
|
input: viem.Hex;
|
|
101030
|
+
transactionIndex: number | null;
|
|
100305
101031
|
typeHex: viem.Hex | null;
|
|
100306
101032
|
accessList?: undefined | undefined;
|
|
100307
101033
|
authorizationList?: undefined | undefined;
|
|
@@ -100319,6 +101045,7 @@ declare const _default$1: {
|
|
|
100319
101045
|
} | {
|
|
100320
101046
|
blockHash: `0x${string}` | null;
|
|
100321
101047
|
blockNumber: bigint | null;
|
|
101048
|
+
blockTimestamp?: bigint | undefined;
|
|
100322
101049
|
from: viem.Address;
|
|
100323
101050
|
gas: bigint;
|
|
100324
101051
|
hash: viem.Hash;
|
|
@@ -100347,6 +101074,7 @@ declare const _default$1: {
|
|
|
100347
101074
|
} | {
|
|
100348
101075
|
blockHash: `0x${string}` | null;
|
|
100349
101076
|
blockNumber: bigint | null;
|
|
101077
|
+
blockTimestamp?: bigint | undefined;
|
|
100350
101078
|
from: viem.Address;
|
|
100351
101079
|
gas: bigint;
|
|
100352
101080
|
hash: viem.Hash;
|
|
@@ -100375,6 +101103,7 @@ declare const _default$1: {
|
|
|
100375
101103
|
} | {
|
|
100376
101104
|
blockHash: `0x${string}` | null;
|
|
100377
101105
|
blockNumber: bigint | null;
|
|
101106
|
+
blockTimestamp?: bigint | undefined;
|
|
100378
101107
|
from: viem.Address;
|
|
100379
101108
|
gas: bigint;
|
|
100380
101109
|
hash: viem.Hash;
|
|
@@ -100403,6 +101132,7 @@ declare const _default$1: {
|
|
|
100403
101132
|
} | {
|
|
100404
101133
|
blockHash: `0x${string}` | null;
|
|
100405
101134
|
blockNumber: bigint | null;
|
|
101135
|
+
blockTimestamp?: bigint | undefined;
|
|
100406
101136
|
from: viem.Address;
|
|
100407
101137
|
gas: bigint;
|
|
100408
101138
|
hash: viem.Hash;
|
|
@@ -100438,6 +101168,7 @@ declare const _default$1: {
|
|
|
100438
101168
|
blobGasUsed?: bigint | undefined;
|
|
100439
101169
|
blockHash: viem.Hash;
|
|
100440
101170
|
blockNumber: bigint;
|
|
101171
|
+
blockTimestamp?: bigint | undefined;
|
|
100441
101172
|
contractAddress: viem.Address | null | undefined;
|
|
100442
101173
|
cumulativeGasUsed: bigint;
|
|
100443
101174
|
effectiveGasPrice: bigint;
|
|
@@ -100459,9 +101190,17 @@ declare const _default$1: {
|
|
|
100459
101190
|
type: "transactionReceipt";
|
|
100460
101191
|
};
|
|
100461
101192
|
};
|
|
101193
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
101194
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
101195
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
101196
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
101197
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
101198
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
101199
|
+
}] | undefined;
|
|
100462
101200
|
serializers: {
|
|
100463
101201
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
100464
101202
|
};
|
|
101203
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
100465
101204
|
readonly network: "base-sepolia";
|
|
100466
101205
|
};
|
|
100467
101206
|
contracts: {
|
|
@@ -101667,6 +102406,7 @@ declare const _default$1: {
|
|
|
101667
102406
|
sourceId: 11155111;
|
|
101668
102407
|
testnet: true;
|
|
101669
102408
|
custom?: Record<string, unknown> | undefined;
|
|
102409
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
101670
102410
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
101671
102411
|
formatters: {
|
|
101672
102412
|
readonly block: {
|
|
@@ -101707,6 +102447,7 @@ declare const _default$1: {
|
|
|
101707
102447
|
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
101708
102448
|
blockHash: `0x${string}` | null;
|
|
101709
102449
|
blockNumber: bigint | null;
|
|
102450
|
+
blockTimestamp?: bigint | undefined;
|
|
101710
102451
|
from: viem.Address;
|
|
101711
102452
|
gas: bigint;
|
|
101712
102453
|
hash: viem.Hash;
|
|
@@ -101732,16 +102473,17 @@ declare const _default$1: {
|
|
|
101732
102473
|
r: viem.Hex;
|
|
101733
102474
|
s: viem.Hex;
|
|
101734
102475
|
v: bigint;
|
|
101735
|
-
value: bigint;
|
|
101736
|
-
gas: bigint;
|
|
101737
102476
|
to: viem.Address | null;
|
|
101738
102477
|
from: viem.Address;
|
|
102478
|
+
gas: bigint;
|
|
101739
102479
|
nonce: number;
|
|
102480
|
+
value: bigint;
|
|
101740
102481
|
blockHash: `0x${string}` | null;
|
|
101741
102482
|
blockNumber: bigint | null;
|
|
101742
|
-
|
|
102483
|
+
blockTimestamp?: bigint | undefined;
|
|
101743
102484
|
hash: viem.Hash;
|
|
101744
102485
|
input: viem.Hex;
|
|
102486
|
+
transactionIndex: number | null;
|
|
101745
102487
|
typeHex: viem.Hex | null;
|
|
101746
102488
|
accessList?: undefined | undefined;
|
|
101747
102489
|
authorizationList?: undefined | undefined;
|
|
@@ -101759,6 +102501,7 @@ declare const _default$1: {
|
|
|
101759
102501
|
} | {
|
|
101760
102502
|
blockHash: `0x${string}` | null;
|
|
101761
102503
|
blockNumber: bigint | null;
|
|
102504
|
+
blockTimestamp?: bigint | undefined;
|
|
101762
102505
|
from: viem.Address;
|
|
101763
102506
|
gas: bigint;
|
|
101764
102507
|
hash: viem.Hash;
|
|
@@ -101787,6 +102530,7 @@ declare const _default$1: {
|
|
|
101787
102530
|
} | {
|
|
101788
102531
|
blockHash: `0x${string}` | null;
|
|
101789
102532
|
blockNumber: bigint | null;
|
|
102533
|
+
blockTimestamp?: bigint | undefined;
|
|
101790
102534
|
from: viem.Address;
|
|
101791
102535
|
gas: bigint;
|
|
101792
102536
|
hash: viem.Hash;
|
|
@@ -101801,13 +102545,7 @@ declare const _default$1: {
|
|
|
101801
102545
|
value: bigint;
|
|
101802
102546
|
yParity: number;
|
|
101803
102547
|
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;
|
|
102548
|
+
authorizationList?: undefined | undefined;
|
|
101811
102549
|
blobVersionedHashes?: undefined | undefined;
|
|
101812
102550
|
chainId: number;
|
|
101813
102551
|
type: "eip1559";
|
|
@@ -101821,6 +102559,7 @@ declare const _default$1: {
|
|
|
101821
102559
|
} | {
|
|
101822
102560
|
blockHash: `0x${string}` | null;
|
|
101823
102561
|
blockNumber: bigint | null;
|
|
102562
|
+
blockTimestamp?: bigint | undefined;
|
|
101824
102563
|
from: viem.Address;
|
|
101825
102564
|
gas: bigint;
|
|
101826
102565
|
hash: viem.Hash;
|
|
@@ -101849,6 +102588,7 @@ declare const _default$1: {
|
|
|
101849
102588
|
} | {
|
|
101850
102589
|
blockHash: `0x${string}` | null;
|
|
101851
102590
|
blockNumber: bigint | null;
|
|
102591
|
+
blockTimestamp?: bigint | undefined;
|
|
101852
102592
|
from: viem.Address;
|
|
101853
102593
|
gas: bigint;
|
|
101854
102594
|
hash: viem.Hash;
|
|
@@ -101884,6 +102624,7 @@ declare const _default$1: {
|
|
|
101884
102624
|
blobGasUsed?: bigint | undefined;
|
|
101885
102625
|
blockHash: viem.Hash;
|
|
101886
102626
|
blockNumber: bigint;
|
|
102627
|
+
blockTimestamp?: bigint | undefined;
|
|
101887
102628
|
contractAddress: viem.Address | null | undefined;
|
|
101888
102629
|
cumulativeGasUsed: bigint;
|
|
101889
102630
|
effectiveGasPrice: bigint;
|
|
@@ -101905,9 +102646,17 @@ declare const _default$1: {
|
|
|
101905
102646
|
type: "transactionReceipt";
|
|
101906
102647
|
};
|
|
101907
102648
|
};
|
|
102649
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
102650
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
102651
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
102652
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
102653
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
102654
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
102655
|
+
}] | undefined;
|
|
101908
102656
|
serializers: {
|
|
101909
102657
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
101910
102658
|
};
|
|
102659
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
101911
102660
|
};
|
|
101912
102661
|
contracts: {
|
|
101913
102662
|
L2ReverseRegistrar: {
|
|
@@ -103074,9 +103823,18 @@ declare const _default$1: {
|
|
|
103074
103823
|
sourceId?: number | undefined | undefined;
|
|
103075
103824
|
testnet: true;
|
|
103076
103825
|
custom?: Record<string, unknown> | undefined;
|
|
103826
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
103077
103827
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
103078
103828
|
formatters?: undefined;
|
|
103829
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
103830
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
103831
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
103832
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
103833
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
103834
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
103835
|
+
}] | undefined;
|
|
103079
103836
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
103837
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
103080
103838
|
};
|
|
103081
103839
|
contracts: {
|
|
103082
103840
|
L2ReverseRegistrar: {
|
|
@@ -104243,9 +105001,18 @@ declare const _default$1: {
|
|
|
104243
105001
|
sourceId?: number | undefined | undefined;
|
|
104244
105002
|
testnet: true;
|
|
104245
105003
|
custom?: Record<string, unknown> | undefined;
|
|
105004
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
104246
105005
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
104247
105006
|
formatters?: undefined;
|
|
105007
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
105008
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
105009
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
105010
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
105011
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
105012
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
105013
|
+
}] | undefined;
|
|
104248
105014
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
105015
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
104249
105016
|
};
|
|
104250
105017
|
contracts: {
|
|
104251
105018
|
L2ReverseRegistrar: {
|
|
@@ -105421,12 +106188,21 @@ declare const _default$1: {
|
|
|
105421
106188
|
sourceId?: number | undefined | undefined;
|
|
105422
106189
|
testnet: true;
|
|
105423
106190
|
custom?: Record<string, unknown> | undefined;
|
|
106191
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
105424
106192
|
fees: {
|
|
105425
106193
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
105426
106194
|
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
105427
106195
|
};
|
|
105428
106196
|
formatters?: undefined;
|
|
106197
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
106198
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
106199
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
106200
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
106201
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
106202
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
106203
|
+
}] | undefined;
|
|
105429
106204
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
106205
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
105430
106206
|
};
|
|
105431
106207
|
contracts: {
|
|
105432
106208
|
L2ReverseRegistrar: {
|
|
@@ -106594,9 +107370,18 @@ declare const _default$1: {
|
|
|
106594
107370
|
sourceId?: number | undefined | undefined;
|
|
106595
107371
|
testnet: true;
|
|
106596
107372
|
custom?: Record<string, unknown> | undefined;
|
|
107373
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
106597
107374
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
106598
107375
|
formatters?: undefined;
|
|
107376
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
107377
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
107378
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
107379
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
107380
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
107381
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
107382
|
+
}] | undefined;
|
|
106599
107383
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
107384
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
106600
107385
|
};
|
|
106601
107386
|
contracts: {
|
|
106602
107387
|
Seaport1_5: {
|
|
@@ -108930,9 +109715,18 @@ declare const _default: {
|
|
|
108930
109715
|
readonly sourceId?: number | undefined | undefined;
|
|
108931
109716
|
readonly testnet: true;
|
|
108932
109717
|
readonly custom?: Record<string, unknown> | undefined;
|
|
109718
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
108933
109719
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
108934
109720
|
readonly formatters?: undefined;
|
|
109721
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
109722
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
109723
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
109724
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
109725
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
109726
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
109727
|
+
}] | undefined;
|
|
108935
109728
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
109729
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
108936
109730
|
};
|
|
108937
109731
|
contracts: {
|
|
108938
109732
|
ENSv1RegistryOld: {
|
|
@@ -114212,9 +115006,18 @@ declare const _default: {
|
|
|
114212
115006
|
readonly sourceId?: number | undefined | undefined;
|
|
114213
115007
|
readonly testnet: true;
|
|
114214
115008
|
readonly custom?: Record<string, unknown> | undefined;
|
|
115009
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
114215
115010
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
114216
115011
|
readonly formatters?: undefined;
|
|
115012
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
115013
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115014
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
115015
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115016
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
115017
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
115018
|
+
}] | undefined;
|
|
114217
115019
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
115020
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
114218
115021
|
};
|
|
114219
115022
|
contracts: {
|
|
114220
115023
|
Resolver: {
|
|
@@ -120196,9 +120999,18 @@ declare const _default: {
|
|
|
120196
120999
|
readonly sourceId?: number | undefined | undefined;
|
|
120197
121000
|
readonly testnet: true;
|
|
120198
121001
|
readonly custom?: Record<string, unknown> | undefined;
|
|
121002
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
120199
121003
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
120200
121004
|
readonly formatters?: undefined;
|
|
121005
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
121006
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
121007
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
121008
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
121009
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
121010
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
121011
|
+
}] | undefined;
|
|
120201
121012
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
121013
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
120202
121014
|
};
|
|
120203
121015
|
contracts: {
|
|
120204
121016
|
DefaultReverseRegistrar: {
|
|
@@ -129351,9 +130163,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129351
130163
|
readonly sourceId?: number | undefined | undefined;
|
|
129352
130164
|
readonly testnet?: boolean | undefined | undefined;
|
|
129353
130165
|
readonly custom?: Record<string, unknown> | undefined;
|
|
130166
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
129354
130167
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
129355
130168
|
readonly formatters?: undefined;
|
|
130169
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130170
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130171
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130172
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130173
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130174
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130175
|
+
}] | undefined;
|
|
129356
130176
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130177
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129357
130178
|
} | {
|
|
129358
130179
|
blockExplorers: {
|
|
129359
130180
|
readonly default: {
|
|
@@ -129390,9 +130211,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129390
130211
|
sourceId?: number | undefined | undefined;
|
|
129391
130212
|
testnet: true;
|
|
129392
130213
|
custom?: Record<string, unknown> | undefined;
|
|
130214
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
129393
130215
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
129394
130216
|
formatters?: undefined;
|
|
130217
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130218
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130219
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130220
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130221
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130222
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130223
|
+
}] | undefined;
|
|
129395
130224
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130225
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129396
130226
|
} | {
|
|
129397
130227
|
readonly id: 99911155111;
|
|
129398
130228
|
readonly name: "Sepolia V2 (Virtual)";
|
|
@@ -129429,9 +130259,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129429
130259
|
readonly sourceId?: number | undefined | undefined;
|
|
129430
130260
|
readonly testnet: true;
|
|
129431
130261
|
readonly custom?: Record<string, unknown> | undefined;
|
|
130262
|
+
readonly extendSchema?: Record<string, unknown> | undefined;
|
|
129432
130263
|
readonly fees?: viem.ChainFees<undefined> | undefined;
|
|
129433
130264
|
readonly formatters?: undefined;
|
|
130265
|
+
readonly prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130266
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130267
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130268
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130269
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130270
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130271
|
+
}] | undefined;
|
|
129434
130272
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130273
|
+
readonly verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129435
130274
|
} | {
|
|
129436
130275
|
blockExplorers: {
|
|
129437
130276
|
readonly default: {
|
|
@@ -129468,9 +130307,18 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129468
130307
|
sourceId?: number | undefined | undefined;
|
|
129469
130308
|
testnet?: boolean | undefined | undefined;
|
|
129470
130309
|
custom?: Record<string, unknown> | undefined;
|
|
130310
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
129471
130311
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
129472
130312
|
formatters?: undefined;
|
|
130313
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130314
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130315
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
130316
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130317
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
130318
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
130319
|
+
}] | undefined;
|
|
129473
130320
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
130321
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
129474
130322
|
};
|
|
129475
130323
|
/**
|
|
129476
130324
|
* Returns the chain id for the ENS Root Datasource within the selected namespace.
|
|
@@ -129479,4 +130327,4 @@ declare const getENSRootChain: (namespaceId: ENSNamespaceId) => {
|
|
|
129479
130327
|
*/
|
|
129480
130328
|
declare const getENSRootChainId: (namespaceId: ENSNamespaceId) => 1 | 31337 | 11155111 | 99911155111;
|
|
129481
130329
|
|
|
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 };
|
|
130330
|
+
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 };
|