@zoralabs/protocol-deployments 0.5.10 → 0.6.0-creator-coins.1
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/.turbo/turbo-build.log +16 -16
- package/CHANGELOG.md +8 -2
- package/dist/generated/wagmi.d.ts +617 -53
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +194 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +194 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/wagmi.ts +198 -8
|
@@ -5224,6 +5224,10 @@ export declare const coinFactoryABI: readonly [{
|
|
|
5224
5224
|
readonly name: "_coinV4Impl";
|
|
5225
5225
|
readonly internalType: "address";
|
|
5226
5226
|
readonly type: "address";
|
|
5227
|
+
}, {
|
|
5228
|
+
readonly name: "_creatorCoinImpl";
|
|
5229
|
+
readonly internalType: "address";
|
|
5230
|
+
readonly type: "address";
|
|
5227
5231
|
}];
|
|
5228
5232
|
readonly stateMutability: "nonpayable";
|
|
5229
5233
|
}, {
|
|
@@ -5310,6 +5314,16 @@ export declare const coinFactoryABI: readonly [{
|
|
|
5310
5314
|
readonly type: "string";
|
|
5311
5315
|
}];
|
|
5312
5316
|
readonly stateMutability: "pure";
|
|
5317
|
+
}, {
|
|
5318
|
+
readonly type: "function";
|
|
5319
|
+
readonly inputs: readonly [];
|
|
5320
|
+
readonly name: "creatorCoinImpl";
|
|
5321
|
+
readonly outputs: readonly [{
|
|
5322
|
+
readonly name: "";
|
|
5323
|
+
readonly internalType: "address";
|
|
5324
|
+
readonly type: "address";
|
|
5325
|
+
}];
|
|
5326
|
+
readonly stateMutability: "view";
|
|
5313
5327
|
}, {
|
|
5314
5328
|
readonly type: "function";
|
|
5315
5329
|
readonly inputs: readonly [{
|
|
@@ -5460,6 +5474,48 @@ export declare const coinFactoryABI: readonly [{
|
|
|
5460
5474
|
readonly type: "uint256";
|
|
5461
5475
|
}];
|
|
5462
5476
|
readonly stateMutability: "payable";
|
|
5477
|
+
}, {
|
|
5478
|
+
readonly type: "function";
|
|
5479
|
+
readonly inputs: readonly [{
|
|
5480
|
+
readonly name: "payoutRecipient";
|
|
5481
|
+
readonly internalType: "address";
|
|
5482
|
+
readonly type: "address";
|
|
5483
|
+
}, {
|
|
5484
|
+
readonly name: "owners";
|
|
5485
|
+
readonly internalType: "address[]";
|
|
5486
|
+
readonly type: "address[]";
|
|
5487
|
+
}, {
|
|
5488
|
+
readonly name: "uri";
|
|
5489
|
+
readonly internalType: "string";
|
|
5490
|
+
readonly type: "string";
|
|
5491
|
+
}, {
|
|
5492
|
+
readonly name: "name";
|
|
5493
|
+
readonly internalType: "string";
|
|
5494
|
+
readonly type: "string";
|
|
5495
|
+
}, {
|
|
5496
|
+
readonly name: "symbol";
|
|
5497
|
+
readonly internalType: "string";
|
|
5498
|
+
readonly type: "string";
|
|
5499
|
+
}, {
|
|
5500
|
+
readonly name: "poolConfig";
|
|
5501
|
+
readonly internalType: "bytes";
|
|
5502
|
+
readonly type: "bytes";
|
|
5503
|
+
}, {
|
|
5504
|
+
readonly name: "platformReferrer";
|
|
5505
|
+
readonly internalType: "address";
|
|
5506
|
+
readonly type: "address";
|
|
5507
|
+
}, {
|
|
5508
|
+
readonly name: "coinSalt";
|
|
5509
|
+
readonly internalType: "bytes32";
|
|
5510
|
+
readonly type: "bytes32";
|
|
5511
|
+
}];
|
|
5512
|
+
readonly name: "deployCreatorCoin";
|
|
5513
|
+
readonly outputs: readonly [{
|
|
5514
|
+
readonly name: "";
|
|
5515
|
+
readonly internalType: "address";
|
|
5516
|
+
readonly type: "address";
|
|
5517
|
+
}];
|
|
5518
|
+
readonly stateMutability: "nonpayable";
|
|
5463
5519
|
}, {
|
|
5464
5520
|
readonly type: "function";
|
|
5465
5521
|
readonly inputs: readonly [{
|
|
@@ -5730,6 +5786,87 @@ export declare const coinFactoryABI: readonly [{
|
|
|
5730
5786
|
readonly indexed: false;
|
|
5731
5787
|
}];
|
|
5732
5788
|
readonly name: "CoinCreatedV4";
|
|
5789
|
+
}, {
|
|
5790
|
+
readonly type: "event";
|
|
5791
|
+
readonly anonymous: false;
|
|
5792
|
+
readonly inputs: readonly [{
|
|
5793
|
+
readonly name: "caller";
|
|
5794
|
+
readonly internalType: "address";
|
|
5795
|
+
readonly type: "address";
|
|
5796
|
+
readonly indexed: true;
|
|
5797
|
+
}, {
|
|
5798
|
+
readonly name: "payoutRecipient";
|
|
5799
|
+
readonly internalType: "address";
|
|
5800
|
+
readonly type: "address";
|
|
5801
|
+
readonly indexed: true;
|
|
5802
|
+
}, {
|
|
5803
|
+
readonly name: "platformReferrer";
|
|
5804
|
+
readonly internalType: "address";
|
|
5805
|
+
readonly type: "address";
|
|
5806
|
+
readonly indexed: true;
|
|
5807
|
+
}, {
|
|
5808
|
+
readonly name: "currency";
|
|
5809
|
+
readonly internalType: "address";
|
|
5810
|
+
readonly type: "address";
|
|
5811
|
+
readonly indexed: false;
|
|
5812
|
+
}, {
|
|
5813
|
+
readonly name: "uri";
|
|
5814
|
+
readonly internalType: "string";
|
|
5815
|
+
readonly type: "string";
|
|
5816
|
+
readonly indexed: false;
|
|
5817
|
+
}, {
|
|
5818
|
+
readonly name: "name";
|
|
5819
|
+
readonly internalType: "string";
|
|
5820
|
+
readonly type: "string";
|
|
5821
|
+
readonly indexed: false;
|
|
5822
|
+
}, {
|
|
5823
|
+
readonly name: "symbol";
|
|
5824
|
+
readonly internalType: "string";
|
|
5825
|
+
readonly type: "string";
|
|
5826
|
+
readonly indexed: false;
|
|
5827
|
+
}, {
|
|
5828
|
+
readonly name: "coin";
|
|
5829
|
+
readonly internalType: "address";
|
|
5830
|
+
readonly type: "address";
|
|
5831
|
+
readonly indexed: false;
|
|
5832
|
+
}, {
|
|
5833
|
+
readonly name: "poolKey";
|
|
5834
|
+
readonly internalType: "struct PoolKey";
|
|
5835
|
+
readonly type: "tuple";
|
|
5836
|
+
readonly components: readonly [{
|
|
5837
|
+
readonly name: "currency0";
|
|
5838
|
+
readonly internalType: "Currency";
|
|
5839
|
+
readonly type: "address";
|
|
5840
|
+
}, {
|
|
5841
|
+
readonly name: "currency1";
|
|
5842
|
+
readonly internalType: "Currency";
|
|
5843
|
+
readonly type: "address";
|
|
5844
|
+
}, {
|
|
5845
|
+
readonly name: "fee";
|
|
5846
|
+
readonly internalType: "uint24";
|
|
5847
|
+
readonly type: "uint24";
|
|
5848
|
+
}, {
|
|
5849
|
+
readonly name: "tickSpacing";
|
|
5850
|
+
readonly internalType: "int24";
|
|
5851
|
+
readonly type: "int24";
|
|
5852
|
+
}, {
|
|
5853
|
+
readonly name: "hooks";
|
|
5854
|
+
readonly internalType: "contract IHooks";
|
|
5855
|
+
readonly type: "address";
|
|
5856
|
+
}];
|
|
5857
|
+
readonly indexed: false;
|
|
5858
|
+
}, {
|
|
5859
|
+
readonly name: "poolKeyHash";
|
|
5860
|
+
readonly internalType: "bytes32";
|
|
5861
|
+
readonly type: "bytes32";
|
|
5862
|
+
readonly indexed: false;
|
|
5863
|
+
}, {
|
|
5864
|
+
readonly name: "version";
|
|
5865
|
+
readonly internalType: "string";
|
|
5866
|
+
readonly type: "string";
|
|
5867
|
+
readonly indexed: false;
|
|
5868
|
+
}];
|
|
5869
|
+
readonly name: "CreatorCoinCreated";
|
|
5733
5870
|
}, {
|
|
5734
5871
|
readonly type: "event";
|
|
5735
5872
|
readonly anonymous: false;
|
|
@@ -5825,6 +5962,10 @@ export declare const coinFactoryABI: readonly [{
|
|
|
5825
5962
|
readonly type: "error";
|
|
5826
5963
|
readonly inputs: readonly [];
|
|
5827
5964
|
readonly name: "FailedInnerCall";
|
|
5965
|
+
}, {
|
|
5966
|
+
readonly type: "error";
|
|
5967
|
+
readonly inputs: readonly [];
|
|
5968
|
+
readonly name: "InvalidConfig";
|
|
5828
5969
|
}, {
|
|
5829
5970
|
readonly type: "error";
|
|
5830
5971
|
readonly inputs: readonly [];
|
|
@@ -5969,6 +6110,10 @@ export declare const coinFactoryConfig: {
|
|
|
5969
6110
|
readonly name: "_coinV4Impl";
|
|
5970
6111
|
readonly internalType: "address";
|
|
5971
6112
|
readonly type: "address";
|
|
6113
|
+
}, {
|
|
6114
|
+
readonly name: "_creatorCoinImpl";
|
|
6115
|
+
readonly internalType: "address";
|
|
6116
|
+
readonly type: "address";
|
|
5972
6117
|
}];
|
|
5973
6118
|
readonly stateMutability: "nonpayable";
|
|
5974
6119
|
}, {
|
|
@@ -6055,6 +6200,16 @@ export declare const coinFactoryConfig: {
|
|
|
6055
6200
|
readonly type: "string";
|
|
6056
6201
|
}];
|
|
6057
6202
|
readonly stateMutability: "pure";
|
|
6203
|
+
}, {
|
|
6204
|
+
readonly type: "function";
|
|
6205
|
+
readonly inputs: readonly [];
|
|
6206
|
+
readonly name: "creatorCoinImpl";
|
|
6207
|
+
readonly outputs: readonly [{
|
|
6208
|
+
readonly name: "";
|
|
6209
|
+
readonly internalType: "address";
|
|
6210
|
+
readonly type: "address";
|
|
6211
|
+
}];
|
|
6212
|
+
readonly stateMutability: "view";
|
|
6058
6213
|
}, {
|
|
6059
6214
|
readonly type: "function";
|
|
6060
6215
|
readonly inputs: readonly [{
|
|
@@ -6205,6 +6360,48 @@ export declare const coinFactoryConfig: {
|
|
|
6205
6360
|
readonly type: "uint256";
|
|
6206
6361
|
}];
|
|
6207
6362
|
readonly stateMutability: "payable";
|
|
6363
|
+
}, {
|
|
6364
|
+
readonly type: "function";
|
|
6365
|
+
readonly inputs: readonly [{
|
|
6366
|
+
readonly name: "payoutRecipient";
|
|
6367
|
+
readonly internalType: "address";
|
|
6368
|
+
readonly type: "address";
|
|
6369
|
+
}, {
|
|
6370
|
+
readonly name: "owners";
|
|
6371
|
+
readonly internalType: "address[]";
|
|
6372
|
+
readonly type: "address[]";
|
|
6373
|
+
}, {
|
|
6374
|
+
readonly name: "uri";
|
|
6375
|
+
readonly internalType: "string";
|
|
6376
|
+
readonly type: "string";
|
|
6377
|
+
}, {
|
|
6378
|
+
readonly name: "name";
|
|
6379
|
+
readonly internalType: "string";
|
|
6380
|
+
readonly type: "string";
|
|
6381
|
+
}, {
|
|
6382
|
+
readonly name: "symbol";
|
|
6383
|
+
readonly internalType: "string";
|
|
6384
|
+
readonly type: "string";
|
|
6385
|
+
}, {
|
|
6386
|
+
readonly name: "poolConfig";
|
|
6387
|
+
readonly internalType: "bytes";
|
|
6388
|
+
readonly type: "bytes";
|
|
6389
|
+
}, {
|
|
6390
|
+
readonly name: "platformReferrer";
|
|
6391
|
+
readonly internalType: "address";
|
|
6392
|
+
readonly type: "address";
|
|
6393
|
+
}, {
|
|
6394
|
+
readonly name: "coinSalt";
|
|
6395
|
+
readonly internalType: "bytes32";
|
|
6396
|
+
readonly type: "bytes32";
|
|
6397
|
+
}];
|
|
6398
|
+
readonly name: "deployCreatorCoin";
|
|
6399
|
+
readonly outputs: readonly [{
|
|
6400
|
+
readonly name: "";
|
|
6401
|
+
readonly internalType: "address";
|
|
6402
|
+
readonly type: "address";
|
|
6403
|
+
}];
|
|
6404
|
+
readonly stateMutability: "nonpayable";
|
|
6208
6405
|
}, {
|
|
6209
6406
|
readonly type: "function";
|
|
6210
6407
|
readonly inputs: readonly [{
|
|
@@ -6479,63 +6676,144 @@ export declare const coinFactoryConfig: {
|
|
|
6479
6676
|
readonly type: "event";
|
|
6480
6677
|
readonly anonymous: false;
|
|
6481
6678
|
readonly inputs: readonly [{
|
|
6482
|
-
readonly name: "
|
|
6483
|
-
readonly internalType: "uint64";
|
|
6484
|
-
readonly type: "uint64";
|
|
6485
|
-
readonly indexed: false;
|
|
6486
|
-
}];
|
|
6487
|
-
readonly name: "Initialized";
|
|
6488
|
-
}, {
|
|
6489
|
-
readonly type: "event";
|
|
6490
|
-
readonly anonymous: false;
|
|
6491
|
-
readonly inputs: readonly [{
|
|
6492
|
-
readonly name: "previousOwner";
|
|
6679
|
+
readonly name: "caller";
|
|
6493
6680
|
readonly internalType: "address";
|
|
6494
6681
|
readonly type: "address";
|
|
6495
6682
|
readonly indexed: true;
|
|
6496
6683
|
}, {
|
|
6497
|
-
readonly name: "
|
|
6684
|
+
readonly name: "payoutRecipient";
|
|
6498
6685
|
readonly internalType: "address";
|
|
6499
6686
|
readonly type: "address";
|
|
6500
6687
|
readonly indexed: true;
|
|
6501
|
-
}
|
|
6502
|
-
|
|
6503
|
-
}, {
|
|
6504
|
-
readonly type: "event";
|
|
6505
|
-
readonly anonymous: false;
|
|
6506
|
-
readonly inputs: readonly [{
|
|
6507
|
-
readonly name: "implementation";
|
|
6688
|
+
}, {
|
|
6689
|
+
readonly name: "platformReferrer";
|
|
6508
6690
|
readonly internalType: "address";
|
|
6509
6691
|
readonly type: "address";
|
|
6510
6692
|
readonly indexed: true;
|
|
6511
|
-
}
|
|
6512
|
-
|
|
6513
|
-
}, {
|
|
6514
|
-
readonly type: "error";
|
|
6515
|
-
readonly inputs: readonly [{
|
|
6516
|
-
readonly name: "target";
|
|
6693
|
+
}, {
|
|
6694
|
+
readonly name: "currency";
|
|
6517
6695
|
readonly internalType: "address";
|
|
6518
6696
|
readonly type: "address";
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
readonly
|
|
6697
|
+
readonly indexed: false;
|
|
6698
|
+
}, {
|
|
6699
|
+
readonly name: "uri";
|
|
6700
|
+
readonly internalType: "string";
|
|
6701
|
+
readonly type: "string";
|
|
6702
|
+
readonly indexed: false;
|
|
6703
|
+
}, {
|
|
6704
|
+
readonly name: "name";
|
|
6705
|
+
readonly internalType: "string";
|
|
6706
|
+
readonly type: "string";
|
|
6707
|
+
readonly indexed: false;
|
|
6708
|
+
}, {
|
|
6709
|
+
readonly name: "symbol";
|
|
6710
|
+
readonly internalType: "string";
|
|
6711
|
+
readonly type: "string";
|
|
6712
|
+
readonly indexed: false;
|
|
6713
|
+
}, {
|
|
6714
|
+
readonly name: "coin";
|
|
6525
6715
|
readonly internalType: "address";
|
|
6526
6716
|
readonly type: "address";
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6717
|
+
readonly indexed: false;
|
|
6718
|
+
}, {
|
|
6719
|
+
readonly name: "poolKey";
|
|
6720
|
+
readonly internalType: "struct PoolKey";
|
|
6721
|
+
readonly type: "tuple";
|
|
6722
|
+
readonly components: readonly [{
|
|
6723
|
+
readonly name: "currency0";
|
|
6724
|
+
readonly internalType: "Currency";
|
|
6725
|
+
readonly type: "address";
|
|
6726
|
+
}, {
|
|
6727
|
+
readonly name: "currency1";
|
|
6728
|
+
readonly internalType: "Currency";
|
|
6729
|
+
readonly type: "address";
|
|
6730
|
+
}, {
|
|
6731
|
+
readonly name: "fee";
|
|
6732
|
+
readonly internalType: "uint24";
|
|
6733
|
+
readonly type: "uint24";
|
|
6734
|
+
}, {
|
|
6735
|
+
readonly name: "tickSpacing";
|
|
6736
|
+
readonly internalType: "int24";
|
|
6737
|
+
readonly type: "int24";
|
|
6738
|
+
}, {
|
|
6739
|
+
readonly name: "hooks";
|
|
6740
|
+
readonly internalType: "contract IHooks";
|
|
6741
|
+
readonly type: "address";
|
|
6742
|
+
}];
|
|
6743
|
+
readonly indexed: false;
|
|
6744
|
+
}, {
|
|
6745
|
+
readonly name: "poolKeyHash";
|
|
6746
|
+
readonly internalType: "bytes32";
|
|
6747
|
+
readonly type: "bytes32";
|
|
6748
|
+
readonly indexed: false;
|
|
6749
|
+
}, {
|
|
6750
|
+
readonly name: "version";
|
|
6751
|
+
readonly internalType: "string";
|
|
6752
|
+
readonly type: "string";
|
|
6753
|
+
readonly indexed: false;
|
|
6754
|
+
}];
|
|
6755
|
+
readonly name: "CreatorCoinCreated";
|
|
6756
|
+
}, {
|
|
6757
|
+
readonly type: "event";
|
|
6758
|
+
readonly anonymous: false;
|
|
6759
|
+
readonly inputs: readonly [{
|
|
6760
|
+
readonly name: "version";
|
|
6761
|
+
readonly internalType: "uint64";
|
|
6762
|
+
readonly type: "uint64";
|
|
6763
|
+
readonly indexed: false;
|
|
6764
|
+
}];
|
|
6765
|
+
readonly name: "Initialized";
|
|
6766
|
+
}, {
|
|
6767
|
+
readonly type: "event";
|
|
6768
|
+
readonly anonymous: false;
|
|
6769
|
+
readonly inputs: readonly [{
|
|
6770
|
+
readonly name: "previousOwner";
|
|
6771
|
+
readonly internalType: "address";
|
|
6772
|
+
readonly type: "address";
|
|
6773
|
+
readonly indexed: true;
|
|
6774
|
+
}, {
|
|
6775
|
+
readonly name: "newOwner";
|
|
6776
|
+
readonly internalType: "address";
|
|
6777
|
+
readonly type: "address";
|
|
6778
|
+
readonly indexed: true;
|
|
6779
|
+
}];
|
|
6780
|
+
readonly name: "OwnershipTransferred";
|
|
6781
|
+
}, {
|
|
6782
|
+
readonly type: "event";
|
|
6783
|
+
readonly anonymous: false;
|
|
6784
|
+
readonly inputs: readonly [{
|
|
6785
|
+
readonly name: "implementation";
|
|
6786
|
+
readonly internalType: "address";
|
|
6787
|
+
readonly type: "address";
|
|
6788
|
+
readonly indexed: true;
|
|
6789
|
+
}];
|
|
6790
|
+
readonly name: "Upgraded";
|
|
6791
|
+
}, {
|
|
6792
|
+
readonly type: "error";
|
|
6793
|
+
readonly inputs: readonly [{
|
|
6794
|
+
readonly name: "target";
|
|
6795
|
+
readonly internalType: "address";
|
|
6796
|
+
readonly type: "address";
|
|
6797
|
+
}];
|
|
6798
|
+
readonly name: "AddressEmptyCode";
|
|
6799
|
+
}, {
|
|
6800
|
+
readonly type: "error";
|
|
6801
|
+
readonly inputs: readonly [{
|
|
6802
|
+
readonly name: "account";
|
|
6803
|
+
readonly internalType: "address";
|
|
6804
|
+
readonly type: "address";
|
|
6805
|
+
}];
|
|
6806
|
+
readonly name: "AddressInsufficientBalance";
|
|
6807
|
+
}, {
|
|
6808
|
+
readonly type: "error";
|
|
6809
|
+
readonly inputs: readonly [];
|
|
6810
|
+
readonly name: "ArrayLengthMismatch";
|
|
6811
|
+
}, {
|
|
6812
|
+
readonly type: "error";
|
|
6813
|
+
readonly inputs: readonly [];
|
|
6814
|
+
readonly name: "CannotMintZeroLiquidity";
|
|
6815
|
+
}, {
|
|
6816
|
+
readonly type: "error";
|
|
6539
6817
|
readonly inputs: readonly [];
|
|
6540
6818
|
readonly name: "ConfigTickLowerMustBeLessThanTickUpper";
|
|
6541
6819
|
}, {
|
|
@@ -6570,6 +6848,10 @@ export declare const coinFactoryConfig: {
|
|
|
6570
6848
|
readonly type: "error";
|
|
6571
6849
|
readonly inputs: readonly [];
|
|
6572
6850
|
readonly name: "FailedInnerCall";
|
|
6851
|
+
}, {
|
|
6852
|
+
readonly type: "error";
|
|
6853
|
+
readonly inputs: readonly [];
|
|
6854
|
+
readonly name: "InvalidConfig";
|
|
6573
6855
|
}, {
|
|
6574
6856
|
readonly type: "error";
|
|
6575
6857
|
readonly inputs: readonly [];
|
|
@@ -12348,7 +12630,7 @@ export declare const commentsConfig: {
|
|
|
12348
12630
|
}];
|
|
12349
12631
|
};
|
|
12350
12632
|
/**
|
|
12351
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
12633
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
|
|
12352
12634
|
*/
|
|
12353
12635
|
export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
|
|
12354
12636
|
readonly type: "constructor";
|
|
@@ -12476,17 +12758,17 @@ export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
|
|
|
12476
12758
|
readonly name: "SwapReverted";
|
|
12477
12759
|
}];
|
|
12478
12760
|
/**
|
|
12479
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
12761
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
|
|
12480
12762
|
*/
|
|
12481
12763
|
export declare const devBuySupplyWithSwapRouterHookAddress: {
|
|
12482
|
-
readonly 8453: "
|
|
12764
|
+
readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
|
|
12483
12765
|
};
|
|
12484
12766
|
/**
|
|
12485
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
12767
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
|
|
12486
12768
|
*/
|
|
12487
12769
|
export declare const devBuySupplyWithSwapRouterHookConfig: {
|
|
12488
12770
|
readonly address: {
|
|
12489
|
-
readonly 8453: "
|
|
12771
|
+
readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
|
|
12490
12772
|
};
|
|
12491
12773
|
readonly abi: readonly [{
|
|
12492
12774
|
readonly type: "constructor";
|
|
@@ -12615,7 +12897,7 @@ export declare const devBuySupplyWithSwapRouterHookConfig: {
|
|
|
12615
12897
|
}];
|
|
12616
12898
|
};
|
|
12617
12899
|
/**
|
|
12618
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
12900
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
|
|
12619
12901
|
*/
|
|
12620
12902
|
export declare const devCoinFactoryABI: readonly [{
|
|
12621
12903
|
readonly type: "constructor";
|
|
@@ -12627,6 +12909,10 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
12627
12909
|
readonly name: "_coinV4Impl";
|
|
12628
12910
|
readonly internalType: "address";
|
|
12629
12911
|
readonly type: "address";
|
|
12912
|
+
}, {
|
|
12913
|
+
readonly name: "_creatorCoinImpl";
|
|
12914
|
+
readonly internalType: "address";
|
|
12915
|
+
readonly type: "address";
|
|
12630
12916
|
}];
|
|
12631
12917
|
readonly stateMutability: "nonpayable";
|
|
12632
12918
|
}, {
|
|
@@ -12713,6 +12999,16 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
12713
12999
|
readonly type: "string";
|
|
12714
13000
|
}];
|
|
12715
13001
|
readonly stateMutability: "pure";
|
|
13002
|
+
}, {
|
|
13003
|
+
readonly type: "function";
|
|
13004
|
+
readonly inputs: readonly [];
|
|
13005
|
+
readonly name: "creatorCoinImpl";
|
|
13006
|
+
readonly outputs: readonly [{
|
|
13007
|
+
readonly name: "";
|
|
13008
|
+
readonly internalType: "address";
|
|
13009
|
+
readonly type: "address";
|
|
13010
|
+
}];
|
|
13011
|
+
readonly stateMutability: "view";
|
|
12716
13012
|
}, {
|
|
12717
13013
|
readonly type: "function";
|
|
12718
13014
|
readonly inputs: readonly [{
|
|
@@ -12863,6 +13159,48 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
12863
13159
|
readonly type: "uint256";
|
|
12864
13160
|
}];
|
|
12865
13161
|
readonly stateMutability: "payable";
|
|
13162
|
+
}, {
|
|
13163
|
+
readonly type: "function";
|
|
13164
|
+
readonly inputs: readonly [{
|
|
13165
|
+
readonly name: "payoutRecipient";
|
|
13166
|
+
readonly internalType: "address";
|
|
13167
|
+
readonly type: "address";
|
|
13168
|
+
}, {
|
|
13169
|
+
readonly name: "owners";
|
|
13170
|
+
readonly internalType: "address[]";
|
|
13171
|
+
readonly type: "address[]";
|
|
13172
|
+
}, {
|
|
13173
|
+
readonly name: "uri";
|
|
13174
|
+
readonly internalType: "string";
|
|
13175
|
+
readonly type: "string";
|
|
13176
|
+
}, {
|
|
13177
|
+
readonly name: "name";
|
|
13178
|
+
readonly internalType: "string";
|
|
13179
|
+
readonly type: "string";
|
|
13180
|
+
}, {
|
|
13181
|
+
readonly name: "symbol";
|
|
13182
|
+
readonly internalType: "string";
|
|
13183
|
+
readonly type: "string";
|
|
13184
|
+
}, {
|
|
13185
|
+
readonly name: "poolConfig";
|
|
13186
|
+
readonly internalType: "bytes";
|
|
13187
|
+
readonly type: "bytes";
|
|
13188
|
+
}, {
|
|
13189
|
+
readonly name: "platformReferrer";
|
|
13190
|
+
readonly internalType: "address";
|
|
13191
|
+
readonly type: "address";
|
|
13192
|
+
}, {
|
|
13193
|
+
readonly name: "coinSalt";
|
|
13194
|
+
readonly internalType: "bytes32";
|
|
13195
|
+
readonly type: "bytes32";
|
|
13196
|
+
}];
|
|
13197
|
+
readonly name: "deployCreatorCoin";
|
|
13198
|
+
readonly outputs: readonly [{
|
|
13199
|
+
readonly name: "";
|
|
13200
|
+
readonly internalType: "address";
|
|
13201
|
+
readonly type: "address";
|
|
13202
|
+
}];
|
|
13203
|
+
readonly stateMutability: "nonpayable";
|
|
12866
13204
|
}, {
|
|
12867
13205
|
readonly type: "function";
|
|
12868
13206
|
readonly inputs: readonly [{
|
|
@@ -13133,6 +13471,87 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
13133
13471
|
readonly indexed: false;
|
|
13134
13472
|
}];
|
|
13135
13473
|
readonly name: "CoinCreatedV4";
|
|
13474
|
+
}, {
|
|
13475
|
+
readonly type: "event";
|
|
13476
|
+
readonly anonymous: false;
|
|
13477
|
+
readonly inputs: readonly [{
|
|
13478
|
+
readonly name: "caller";
|
|
13479
|
+
readonly internalType: "address";
|
|
13480
|
+
readonly type: "address";
|
|
13481
|
+
readonly indexed: true;
|
|
13482
|
+
}, {
|
|
13483
|
+
readonly name: "payoutRecipient";
|
|
13484
|
+
readonly internalType: "address";
|
|
13485
|
+
readonly type: "address";
|
|
13486
|
+
readonly indexed: true;
|
|
13487
|
+
}, {
|
|
13488
|
+
readonly name: "platformReferrer";
|
|
13489
|
+
readonly internalType: "address";
|
|
13490
|
+
readonly type: "address";
|
|
13491
|
+
readonly indexed: true;
|
|
13492
|
+
}, {
|
|
13493
|
+
readonly name: "currency";
|
|
13494
|
+
readonly internalType: "address";
|
|
13495
|
+
readonly type: "address";
|
|
13496
|
+
readonly indexed: false;
|
|
13497
|
+
}, {
|
|
13498
|
+
readonly name: "uri";
|
|
13499
|
+
readonly internalType: "string";
|
|
13500
|
+
readonly type: "string";
|
|
13501
|
+
readonly indexed: false;
|
|
13502
|
+
}, {
|
|
13503
|
+
readonly name: "name";
|
|
13504
|
+
readonly internalType: "string";
|
|
13505
|
+
readonly type: "string";
|
|
13506
|
+
readonly indexed: false;
|
|
13507
|
+
}, {
|
|
13508
|
+
readonly name: "symbol";
|
|
13509
|
+
readonly internalType: "string";
|
|
13510
|
+
readonly type: "string";
|
|
13511
|
+
readonly indexed: false;
|
|
13512
|
+
}, {
|
|
13513
|
+
readonly name: "coin";
|
|
13514
|
+
readonly internalType: "address";
|
|
13515
|
+
readonly type: "address";
|
|
13516
|
+
readonly indexed: false;
|
|
13517
|
+
}, {
|
|
13518
|
+
readonly name: "poolKey";
|
|
13519
|
+
readonly internalType: "struct PoolKey";
|
|
13520
|
+
readonly type: "tuple";
|
|
13521
|
+
readonly components: readonly [{
|
|
13522
|
+
readonly name: "currency0";
|
|
13523
|
+
readonly internalType: "Currency";
|
|
13524
|
+
readonly type: "address";
|
|
13525
|
+
}, {
|
|
13526
|
+
readonly name: "currency1";
|
|
13527
|
+
readonly internalType: "Currency";
|
|
13528
|
+
readonly type: "address";
|
|
13529
|
+
}, {
|
|
13530
|
+
readonly name: "fee";
|
|
13531
|
+
readonly internalType: "uint24";
|
|
13532
|
+
readonly type: "uint24";
|
|
13533
|
+
}, {
|
|
13534
|
+
readonly name: "tickSpacing";
|
|
13535
|
+
readonly internalType: "int24";
|
|
13536
|
+
readonly type: "int24";
|
|
13537
|
+
}, {
|
|
13538
|
+
readonly name: "hooks";
|
|
13539
|
+
readonly internalType: "contract IHooks";
|
|
13540
|
+
readonly type: "address";
|
|
13541
|
+
}];
|
|
13542
|
+
readonly indexed: false;
|
|
13543
|
+
}, {
|
|
13544
|
+
readonly name: "poolKeyHash";
|
|
13545
|
+
readonly internalType: "bytes32";
|
|
13546
|
+
readonly type: "bytes32";
|
|
13547
|
+
readonly indexed: false;
|
|
13548
|
+
}, {
|
|
13549
|
+
readonly name: "version";
|
|
13550
|
+
readonly internalType: "string";
|
|
13551
|
+
readonly type: "string";
|
|
13552
|
+
readonly indexed: false;
|
|
13553
|
+
}];
|
|
13554
|
+
readonly name: "CreatorCoinCreated";
|
|
13136
13555
|
}, {
|
|
13137
13556
|
readonly type: "event";
|
|
13138
13557
|
readonly anonymous: false;
|
|
@@ -13228,6 +13647,10 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
13228
13647
|
readonly type: "error";
|
|
13229
13648
|
readonly inputs: readonly [];
|
|
13230
13649
|
readonly name: "FailedInnerCall";
|
|
13650
|
+
}, {
|
|
13651
|
+
readonly type: "error";
|
|
13652
|
+
readonly inputs: readonly [];
|
|
13653
|
+
readonly name: "InvalidConfig";
|
|
13231
13654
|
}, {
|
|
13232
13655
|
readonly type: "error";
|
|
13233
13656
|
readonly inputs: readonly [];
|
|
@@ -13346,17 +13769,17 @@ export declare const devCoinFactoryABI: readonly [{
|
|
|
13346
13769
|
readonly name: "ZeroDiscoverySupplyShare";
|
|
13347
13770
|
}];
|
|
13348
13771
|
/**
|
|
13349
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
13772
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
|
|
13350
13773
|
*/
|
|
13351
13774
|
export declare const devCoinFactoryAddress: {
|
|
13352
|
-
readonly 8453: "
|
|
13775
|
+
readonly 8453: "0x25271c98c1548c075c6DD463308c9a37135c842c";
|
|
13353
13776
|
};
|
|
13354
13777
|
/**
|
|
13355
|
-
* [__View Contract on Base Basescan__](https://basescan.org/address/
|
|
13778
|
+
* [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
|
|
13356
13779
|
*/
|
|
13357
13780
|
export declare const devCoinFactoryConfig: {
|
|
13358
13781
|
readonly address: {
|
|
13359
|
-
readonly 8453: "
|
|
13782
|
+
readonly 8453: "0x25271c98c1548c075c6DD463308c9a37135c842c";
|
|
13360
13783
|
};
|
|
13361
13784
|
readonly abi: readonly [{
|
|
13362
13785
|
readonly type: "constructor";
|
|
@@ -13368,6 +13791,10 @@ export declare const devCoinFactoryConfig: {
|
|
|
13368
13791
|
readonly name: "_coinV4Impl";
|
|
13369
13792
|
readonly internalType: "address";
|
|
13370
13793
|
readonly type: "address";
|
|
13794
|
+
}, {
|
|
13795
|
+
readonly name: "_creatorCoinImpl";
|
|
13796
|
+
readonly internalType: "address";
|
|
13797
|
+
readonly type: "address";
|
|
13371
13798
|
}];
|
|
13372
13799
|
readonly stateMutability: "nonpayable";
|
|
13373
13800
|
}, {
|
|
@@ -13454,6 +13881,16 @@ export declare const devCoinFactoryConfig: {
|
|
|
13454
13881
|
readonly type: "string";
|
|
13455
13882
|
}];
|
|
13456
13883
|
readonly stateMutability: "pure";
|
|
13884
|
+
}, {
|
|
13885
|
+
readonly type: "function";
|
|
13886
|
+
readonly inputs: readonly [];
|
|
13887
|
+
readonly name: "creatorCoinImpl";
|
|
13888
|
+
readonly outputs: readonly [{
|
|
13889
|
+
readonly name: "";
|
|
13890
|
+
readonly internalType: "address";
|
|
13891
|
+
readonly type: "address";
|
|
13892
|
+
}];
|
|
13893
|
+
readonly stateMutability: "view";
|
|
13457
13894
|
}, {
|
|
13458
13895
|
readonly type: "function";
|
|
13459
13896
|
readonly inputs: readonly [{
|
|
@@ -13604,6 +14041,48 @@ export declare const devCoinFactoryConfig: {
|
|
|
13604
14041
|
readonly type: "uint256";
|
|
13605
14042
|
}];
|
|
13606
14043
|
readonly stateMutability: "payable";
|
|
14044
|
+
}, {
|
|
14045
|
+
readonly type: "function";
|
|
14046
|
+
readonly inputs: readonly [{
|
|
14047
|
+
readonly name: "payoutRecipient";
|
|
14048
|
+
readonly internalType: "address";
|
|
14049
|
+
readonly type: "address";
|
|
14050
|
+
}, {
|
|
14051
|
+
readonly name: "owners";
|
|
14052
|
+
readonly internalType: "address[]";
|
|
14053
|
+
readonly type: "address[]";
|
|
14054
|
+
}, {
|
|
14055
|
+
readonly name: "uri";
|
|
14056
|
+
readonly internalType: "string";
|
|
14057
|
+
readonly type: "string";
|
|
14058
|
+
}, {
|
|
14059
|
+
readonly name: "name";
|
|
14060
|
+
readonly internalType: "string";
|
|
14061
|
+
readonly type: "string";
|
|
14062
|
+
}, {
|
|
14063
|
+
readonly name: "symbol";
|
|
14064
|
+
readonly internalType: "string";
|
|
14065
|
+
readonly type: "string";
|
|
14066
|
+
}, {
|
|
14067
|
+
readonly name: "poolConfig";
|
|
14068
|
+
readonly internalType: "bytes";
|
|
14069
|
+
readonly type: "bytes";
|
|
14070
|
+
}, {
|
|
14071
|
+
readonly name: "platformReferrer";
|
|
14072
|
+
readonly internalType: "address";
|
|
14073
|
+
readonly type: "address";
|
|
14074
|
+
}, {
|
|
14075
|
+
readonly name: "coinSalt";
|
|
14076
|
+
readonly internalType: "bytes32";
|
|
14077
|
+
readonly type: "bytes32";
|
|
14078
|
+
}];
|
|
14079
|
+
readonly name: "deployCreatorCoin";
|
|
14080
|
+
readonly outputs: readonly [{
|
|
14081
|
+
readonly name: "";
|
|
14082
|
+
readonly internalType: "address";
|
|
14083
|
+
readonly type: "address";
|
|
14084
|
+
}];
|
|
14085
|
+
readonly stateMutability: "nonpayable";
|
|
13607
14086
|
}, {
|
|
13608
14087
|
readonly type: "function";
|
|
13609
14088
|
readonly inputs: readonly [{
|
|
@@ -13874,6 +14353,87 @@ export declare const devCoinFactoryConfig: {
|
|
|
13874
14353
|
readonly indexed: false;
|
|
13875
14354
|
}];
|
|
13876
14355
|
readonly name: "CoinCreatedV4";
|
|
14356
|
+
}, {
|
|
14357
|
+
readonly type: "event";
|
|
14358
|
+
readonly anonymous: false;
|
|
14359
|
+
readonly inputs: readonly [{
|
|
14360
|
+
readonly name: "caller";
|
|
14361
|
+
readonly internalType: "address";
|
|
14362
|
+
readonly type: "address";
|
|
14363
|
+
readonly indexed: true;
|
|
14364
|
+
}, {
|
|
14365
|
+
readonly name: "payoutRecipient";
|
|
14366
|
+
readonly internalType: "address";
|
|
14367
|
+
readonly type: "address";
|
|
14368
|
+
readonly indexed: true;
|
|
14369
|
+
}, {
|
|
14370
|
+
readonly name: "platformReferrer";
|
|
14371
|
+
readonly internalType: "address";
|
|
14372
|
+
readonly type: "address";
|
|
14373
|
+
readonly indexed: true;
|
|
14374
|
+
}, {
|
|
14375
|
+
readonly name: "currency";
|
|
14376
|
+
readonly internalType: "address";
|
|
14377
|
+
readonly type: "address";
|
|
14378
|
+
readonly indexed: false;
|
|
14379
|
+
}, {
|
|
14380
|
+
readonly name: "uri";
|
|
14381
|
+
readonly internalType: "string";
|
|
14382
|
+
readonly type: "string";
|
|
14383
|
+
readonly indexed: false;
|
|
14384
|
+
}, {
|
|
14385
|
+
readonly name: "name";
|
|
14386
|
+
readonly internalType: "string";
|
|
14387
|
+
readonly type: "string";
|
|
14388
|
+
readonly indexed: false;
|
|
14389
|
+
}, {
|
|
14390
|
+
readonly name: "symbol";
|
|
14391
|
+
readonly internalType: "string";
|
|
14392
|
+
readonly type: "string";
|
|
14393
|
+
readonly indexed: false;
|
|
14394
|
+
}, {
|
|
14395
|
+
readonly name: "coin";
|
|
14396
|
+
readonly internalType: "address";
|
|
14397
|
+
readonly type: "address";
|
|
14398
|
+
readonly indexed: false;
|
|
14399
|
+
}, {
|
|
14400
|
+
readonly name: "poolKey";
|
|
14401
|
+
readonly internalType: "struct PoolKey";
|
|
14402
|
+
readonly type: "tuple";
|
|
14403
|
+
readonly components: readonly [{
|
|
14404
|
+
readonly name: "currency0";
|
|
14405
|
+
readonly internalType: "Currency";
|
|
14406
|
+
readonly type: "address";
|
|
14407
|
+
}, {
|
|
14408
|
+
readonly name: "currency1";
|
|
14409
|
+
readonly internalType: "Currency";
|
|
14410
|
+
readonly type: "address";
|
|
14411
|
+
}, {
|
|
14412
|
+
readonly name: "fee";
|
|
14413
|
+
readonly internalType: "uint24";
|
|
14414
|
+
readonly type: "uint24";
|
|
14415
|
+
}, {
|
|
14416
|
+
readonly name: "tickSpacing";
|
|
14417
|
+
readonly internalType: "int24";
|
|
14418
|
+
readonly type: "int24";
|
|
14419
|
+
}, {
|
|
14420
|
+
readonly name: "hooks";
|
|
14421
|
+
readonly internalType: "contract IHooks";
|
|
14422
|
+
readonly type: "address";
|
|
14423
|
+
}];
|
|
14424
|
+
readonly indexed: false;
|
|
14425
|
+
}, {
|
|
14426
|
+
readonly name: "poolKeyHash";
|
|
14427
|
+
readonly internalType: "bytes32";
|
|
14428
|
+
readonly type: "bytes32";
|
|
14429
|
+
readonly indexed: false;
|
|
14430
|
+
}, {
|
|
14431
|
+
readonly name: "version";
|
|
14432
|
+
readonly internalType: "string";
|
|
14433
|
+
readonly type: "string";
|
|
14434
|
+
readonly indexed: false;
|
|
14435
|
+
}];
|
|
14436
|
+
readonly name: "CreatorCoinCreated";
|
|
13877
14437
|
}, {
|
|
13878
14438
|
readonly type: "event";
|
|
13879
14439
|
readonly anonymous: false;
|
|
@@ -13969,6 +14529,10 @@ export declare const devCoinFactoryConfig: {
|
|
|
13969
14529
|
readonly type: "error";
|
|
13970
14530
|
readonly inputs: readonly [];
|
|
13971
14531
|
readonly name: "FailedInnerCall";
|
|
14532
|
+
}, {
|
|
14533
|
+
readonly type: "error";
|
|
14534
|
+
readonly inputs: readonly [];
|
|
14535
|
+
readonly name: "InvalidConfig";
|
|
13972
14536
|
}, {
|
|
13973
14537
|
readonly type: "error";
|
|
13974
14538
|
readonly inputs: readonly [];
|