@flaunch/sdk 0.8.3-beta.7 → 0.9.0-beta.2
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/abi/FlaunchZap.d.ts +120 -112
- package/dist/abi/FlaunchZap.d.ts.map +1 -1
- package/dist/abi/TrustedSignerFeeCalculator.d.ts +544 -0
- package/dist/abi/TrustedSignerFeeCalculator.d.ts.map +1 -0
- package/dist/abi/index.cjs +337 -106
- package/dist/abi/index.cjs.map +1 -1
- package/dist/abi/index.js +337 -106
- package/dist/abi/index.js.map +1 -1
- package/dist/addresses/index.cjs +61 -61
- package/dist/addresses/index.cjs.map +1 -1
- package/dist/addresses/index.js +61 -61
- package/dist/addresses/index.js.map +1 -1
- package/dist/addresses.d.ts +14 -14
- package/dist/addresses.d.ts.map +1 -1
- package/dist/clients/AnyPositionManagerClient.d.ts.map +1 -1
- package/dist/clients/FlaunchPositionManagerClient.d.ts +3 -0
- package/dist/clients/FlaunchPositionManagerClient.d.ts.map +1 -1
- package/dist/clients/FlaunchPositionManagerV1_1Client.d.ts +3 -0
- package/dist/clients/FlaunchPositionManagerV1_1Client.d.ts.map +1 -1
- package/dist/clients/FlaunchPositionManagerV1_2Client.d.ts +3 -0
- package/dist/clients/FlaunchPositionManagerV1_2Client.d.ts.map +1 -1
- package/dist/clients/FlaunchZapClient.d.ts +1 -0
- package/dist/clients/FlaunchZapClient.d.ts.map +1 -1
- package/dist/clients/MemecoinClient.d.ts +19 -1
- package/dist/clients/MemecoinClient.d.ts.map +1 -1
- package/dist/clients/QuoterClient.d.ts +37 -10
- package/dist/clients/QuoterClient.d.ts.map +1 -1
- package/dist/clients/TrustedSignerFeeCalculatorClient.d.ts +20 -0
- package/dist/clients/TrustedSignerFeeCalculatorClient.d.ts.map +1 -0
- package/dist/helpers/index.cjs +100 -24
- package/dist/helpers/index.cjs.map +1 -1
- package/dist/helpers/index.js +99 -25
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/ipfs.d.ts +33 -1
- package/dist/helpers/ipfs.d.ts.map +1 -1
- package/dist/index.cjs.js +7348 -2101
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +7340 -2101
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/sdk/FlaunchBackend.d.ts +53 -0
- package/dist/sdk/FlaunchBackend.d.ts.map +1 -0
- package/dist/sdk/FlaunchSDK.d.ts +77 -22
- package/dist/sdk/FlaunchSDK.d.ts.map +1 -1
- package/dist/sdk/calldata.d.ts +66 -0
- package/dist/sdk/calldata.d.ts.map +1 -0
- package/dist/types.d.ts +25 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/universalRouter.d.ts +16 -6
- package/dist/utils/universalRouter.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/abi/index.js
CHANGED
|
@@ -7631,256 +7631,487 @@ const FlaunchV1_1Abi = [
|
|
|
7631
7631
|
|
|
7632
7632
|
const FlaunchZapAbi = [
|
|
7633
7633
|
{
|
|
7634
|
+
type: "constructor",
|
|
7634
7635
|
inputs: [
|
|
7635
7636
|
{
|
|
7636
|
-
internalType: "contract PositionManager",
|
|
7637
7637
|
name: "_positionManager",
|
|
7638
7638
|
type: "address",
|
|
7639
|
+
internalType: "contract PositionManager",
|
|
7639
7640
|
},
|
|
7640
7641
|
{
|
|
7641
|
-
internalType: "contract Flaunch",
|
|
7642
7642
|
name: "_flaunchContract",
|
|
7643
7643
|
type: "address",
|
|
7644
|
+
internalType: "contract Flaunch",
|
|
7645
|
+
},
|
|
7646
|
+
{
|
|
7647
|
+
name: "_flETH",
|
|
7648
|
+
type: "address",
|
|
7649
|
+
internalType: "contract IFLETH",
|
|
7650
|
+
},
|
|
7651
|
+
{
|
|
7652
|
+
name: "_poolSwap",
|
|
7653
|
+
type: "address",
|
|
7654
|
+
internalType: "contract PoolSwap",
|
|
7644
7655
|
},
|
|
7645
|
-
{ internalType: "contract IFLETH", name: "_flETH", type: "address" },
|
|
7646
|
-
{ internalType: "contract PoolSwap", name: "_poolSwap", type: "address" },
|
|
7647
7656
|
{
|
|
7648
|
-
internalType: "contract ITreasuryManagerFactory",
|
|
7649
7657
|
name: "_treasuryManagerFactory",
|
|
7650
7658
|
type: "address",
|
|
7659
|
+
internalType: "contract ITreasuryManagerFactory",
|
|
7651
7660
|
},
|
|
7652
7661
|
{
|
|
7653
|
-
internalType: "contract IMerkleAirdrop",
|
|
7654
7662
|
name: "_merkleAirdrop",
|
|
7655
7663
|
type: "address",
|
|
7664
|
+
internalType: "contract IMerkleAirdrop",
|
|
7656
7665
|
},
|
|
7657
7666
|
{
|
|
7658
|
-
internalType: "contract WhitelistFairLaunch",
|
|
7659
7667
|
name: "_whitelistFairLaunch",
|
|
7660
7668
|
type: "address",
|
|
7669
|
+
internalType: "contract WhitelistFairLaunch",
|
|
7661
7670
|
},
|
|
7662
7671
|
],
|
|
7663
7672
|
stateMutability: "nonpayable",
|
|
7664
|
-
type: "constructor",
|
|
7665
7673
|
},
|
|
7666
|
-
{ inputs: [], name: "CreatorCannotBeZero", type: "error" },
|
|
7667
|
-
{ inputs: [], name: "InsufficientMemecoinsForAirdrop", type: "error" },
|
|
7668
7674
|
{
|
|
7675
|
+
type: "receive",
|
|
7676
|
+
stateMutability: "payable",
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
type: "function",
|
|
7680
|
+
name: "calculateFee",
|
|
7669
7681
|
inputs: [
|
|
7670
|
-
{
|
|
7671
|
-
|
|
7672
|
-
|
|
7682
|
+
{
|
|
7683
|
+
name: "_premineAmount",
|
|
7684
|
+
type: "uint256",
|
|
7685
|
+
internalType: "uint256",
|
|
7686
|
+
},
|
|
7687
|
+
{
|
|
7688
|
+
name: "_slippage",
|
|
7689
|
+
type: "uint256",
|
|
7690
|
+
internalType: "uint256",
|
|
7691
|
+
},
|
|
7692
|
+
{
|
|
7693
|
+
name: "_initialPriceParams",
|
|
7694
|
+
type: "bytes",
|
|
7695
|
+
internalType: "bytes",
|
|
7696
|
+
},
|
|
7673
7697
|
],
|
|
7674
|
-
name: "calculateFee",
|
|
7675
7698
|
outputs: [
|
|
7676
|
-
{
|
|
7699
|
+
{
|
|
7700
|
+
name: "ethRequired_",
|
|
7701
|
+
type: "uint256",
|
|
7702
|
+
internalType: "uint256",
|
|
7703
|
+
},
|
|
7677
7704
|
],
|
|
7678
7705
|
stateMutability: "view",
|
|
7679
|
-
type: "function",
|
|
7680
7706
|
},
|
|
7681
7707
|
{
|
|
7708
|
+
type: "function",
|
|
7709
|
+
name: "deployAndInitializeManager",
|
|
7682
7710
|
inputs: [
|
|
7683
7711
|
{
|
|
7684
|
-
internalType: "address",
|
|
7685
7712
|
name: "_managerImplementation",
|
|
7686
7713
|
type: "address",
|
|
7714
|
+
internalType: "address",
|
|
7715
|
+
},
|
|
7716
|
+
{
|
|
7717
|
+
name: "_owner",
|
|
7718
|
+
type: "address",
|
|
7719
|
+
internalType: "address",
|
|
7720
|
+
},
|
|
7721
|
+
{
|
|
7722
|
+
name: "_data",
|
|
7723
|
+
type: "bytes",
|
|
7724
|
+
internalType: "bytes",
|
|
7725
|
+
},
|
|
7726
|
+
{
|
|
7727
|
+
name: "_permissions",
|
|
7728
|
+
type: "address",
|
|
7729
|
+
internalType: "address",
|
|
7687
7730
|
},
|
|
7688
|
-
{ internalType: "address", name: "_owner", type: "address" },
|
|
7689
|
-
{ internalType: "bytes", name: "_data", type: "bytes" },
|
|
7690
|
-
{ internalType: "address", name: "_permissions", type: "address" },
|
|
7691
7731
|
],
|
|
7692
|
-
name: "deployAndInitializeManager",
|
|
7693
7732
|
outputs: [
|
|
7694
|
-
{
|
|
7733
|
+
{
|
|
7734
|
+
name: "manager_",
|
|
7735
|
+
type: "address",
|
|
7736
|
+
internalType: "address payable",
|
|
7737
|
+
},
|
|
7695
7738
|
],
|
|
7696
7739
|
stateMutability: "nonpayable",
|
|
7697
|
-
type: "function",
|
|
7698
7740
|
},
|
|
7699
7741
|
{
|
|
7700
|
-
|
|
7742
|
+
type: "function",
|
|
7701
7743
|
name: "flETH",
|
|
7702
|
-
|
|
7744
|
+
inputs: [],
|
|
7745
|
+
outputs: [
|
|
7746
|
+
{
|
|
7747
|
+
name: "",
|
|
7748
|
+
type: "address",
|
|
7749
|
+
internalType: "contract IFLETH",
|
|
7750
|
+
},
|
|
7751
|
+
],
|
|
7703
7752
|
stateMutability: "view",
|
|
7704
|
-
type: "function",
|
|
7705
7753
|
},
|
|
7706
7754
|
{
|
|
7755
|
+
type: "function",
|
|
7756
|
+
name: "flaunch",
|
|
7707
7757
|
inputs: [
|
|
7708
7758
|
{
|
|
7759
|
+
name: "_flaunchParams",
|
|
7760
|
+
type: "tuple",
|
|
7761
|
+
internalType: "struct PositionManager.FlaunchParams",
|
|
7709
7762
|
components: [
|
|
7710
|
-
{ internalType: "string", name: "name", type: "string" },
|
|
7711
|
-
{ internalType: "string", name: "symbol", type: "string" },
|
|
7712
|
-
{ internalType: "string", name: "tokenUri", type: "string" },
|
|
7713
7763
|
{
|
|
7714
|
-
|
|
7764
|
+
name: "name",
|
|
7765
|
+
type: "string",
|
|
7766
|
+
internalType: "string",
|
|
7767
|
+
},
|
|
7768
|
+
{
|
|
7769
|
+
name: "symbol",
|
|
7770
|
+
type: "string",
|
|
7771
|
+
internalType: "string",
|
|
7772
|
+
},
|
|
7773
|
+
{
|
|
7774
|
+
name: "tokenUri",
|
|
7775
|
+
type: "string",
|
|
7776
|
+
internalType: "string",
|
|
7777
|
+
},
|
|
7778
|
+
{
|
|
7715
7779
|
name: "initialTokenFairLaunch",
|
|
7716
7780
|
type: "uint256",
|
|
7781
|
+
internalType: "uint256",
|
|
7717
7782
|
},
|
|
7718
7783
|
{
|
|
7719
|
-
internalType: "uint256",
|
|
7720
7784
|
name: "fairLaunchDuration",
|
|
7721
7785
|
type: "uint256",
|
|
7786
|
+
internalType: "uint256",
|
|
7787
|
+
},
|
|
7788
|
+
{
|
|
7789
|
+
name: "premineAmount",
|
|
7790
|
+
type: "uint256",
|
|
7791
|
+
internalType: "uint256",
|
|
7792
|
+
},
|
|
7793
|
+
{
|
|
7794
|
+
name: "creator",
|
|
7795
|
+
type: "address",
|
|
7796
|
+
internalType: "address",
|
|
7722
7797
|
},
|
|
7723
|
-
{ internalType: "uint256", name: "premineAmount", type: "uint256" },
|
|
7724
|
-
{ internalType: "address", name: "creator", type: "address" },
|
|
7725
7798
|
{
|
|
7726
|
-
internalType: "uint24",
|
|
7727
7799
|
name: "creatorFeeAllocation",
|
|
7728
7800
|
type: "uint24",
|
|
7801
|
+
internalType: "uint24",
|
|
7802
|
+
},
|
|
7803
|
+
{
|
|
7804
|
+
name: "flaunchAt",
|
|
7805
|
+
type: "uint256",
|
|
7806
|
+
internalType: "uint256",
|
|
7807
|
+
},
|
|
7808
|
+
{
|
|
7809
|
+
name: "initialPriceParams",
|
|
7810
|
+
type: "bytes",
|
|
7811
|
+
internalType: "bytes",
|
|
7812
|
+
},
|
|
7813
|
+
{
|
|
7814
|
+
name: "feeCalculatorParams",
|
|
7815
|
+
type: "bytes",
|
|
7816
|
+
internalType: "bytes",
|
|
7729
7817
|
},
|
|
7730
|
-
{ internalType: "uint256", name: "flaunchAt", type: "uint256" },
|
|
7731
|
-
{ internalType: "bytes", name: "initialPriceParams", type: "bytes" },
|
|
7732
|
-
{ internalType: "bytes", name: "feeCalculatorParams", type: "bytes" },
|
|
7733
7818
|
],
|
|
7734
|
-
internalType: "struct PositionManager.FlaunchParams",
|
|
7735
|
-
name: "_flaunchParams",
|
|
7736
|
-
type: "tuple",
|
|
7737
7819
|
},
|
|
7738
|
-
{ internalType: "bytes", name: "_premineSwapHookData", type: "bytes" },
|
|
7739
7820
|
{
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7743
|
-
|
|
7744
|
-
|
|
7745
|
-
|
|
7746
|
-
|
|
7747
|
-
|
|
7821
|
+
name: "_trustedFeeSigner",
|
|
7822
|
+
type: "address",
|
|
7823
|
+
internalType: "address",
|
|
7824
|
+
},
|
|
7825
|
+
{
|
|
7826
|
+
name: "_premineSwapHookData",
|
|
7827
|
+
type: "bytes",
|
|
7828
|
+
internalType: "bytes",
|
|
7748
7829
|
},
|
|
7749
7830
|
{
|
|
7831
|
+
name: "_whitelistParams",
|
|
7832
|
+
type: "tuple",
|
|
7833
|
+
internalType: "struct FlaunchZap.WhitelistParams",
|
|
7750
7834
|
components: [
|
|
7751
|
-
{
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
|
|
7835
|
+
{
|
|
7836
|
+
name: "merkleRoot",
|
|
7837
|
+
type: "bytes32",
|
|
7838
|
+
internalType: "bytes32",
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
name: "merkleIPFSHash",
|
|
7842
|
+
type: "string",
|
|
7843
|
+
internalType: "string",
|
|
7844
|
+
},
|
|
7845
|
+
{
|
|
7846
|
+
name: "maxTokens",
|
|
7847
|
+
type: "uint256",
|
|
7848
|
+
internalType: "uint256",
|
|
7849
|
+
},
|
|
7756
7850
|
],
|
|
7757
|
-
internalType: "struct FlaunchZap.AirdropParams",
|
|
7758
|
-
name: "_airdropParams",
|
|
7759
|
-
type: "tuple",
|
|
7760
7851
|
},
|
|
7761
7852
|
{
|
|
7853
|
+
name: "_airdropParams",
|
|
7854
|
+
type: "tuple",
|
|
7855
|
+
internalType: "struct FlaunchZap.AirdropParams",
|
|
7762
7856
|
components: [
|
|
7763
|
-
{
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7857
|
+
{
|
|
7858
|
+
name: "airdropIndex",
|
|
7859
|
+
type: "uint256",
|
|
7860
|
+
internalType: "uint256",
|
|
7861
|
+
},
|
|
7862
|
+
{
|
|
7863
|
+
name: "airdropAmount",
|
|
7864
|
+
type: "uint256",
|
|
7865
|
+
internalType: "uint256",
|
|
7866
|
+
},
|
|
7867
|
+
{
|
|
7868
|
+
name: "airdropEndTime",
|
|
7869
|
+
type: "uint256",
|
|
7870
|
+
internalType: "uint256",
|
|
7871
|
+
},
|
|
7872
|
+
{
|
|
7873
|
+
name: "merkleRoot",
|
|
7874
|
+
type: "bytes32",
|
|
7875
|
+
internalType: "bytes32",
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
name: "merkleIPFSHash",
|
|
7879
|
+
type: "string",
|
|
7880
|
+
internalType: "string",
|
|
7881
|
+
},
|
|
7767
7882
|
],
|
|
7768
|
-
|
|
7883
|
+
},
|
|
7884
|
+
{
|
|
7769
7885
|
name: "_treasuryManagerParams",
|
|
7770
7886
|
type: "tuple",
|
|
7887
|
+
internalType: "struct FlaunchZap.TreasuryManagerParams",
|
|
7888
|
+
components: [
|
|
7889
|
+
{
|
|
7890
|
+
name: "manager",
|
|
7891
|
+
type: "address",
|
|
7892
|
+
internalType: "address",
|
|
7893
|
+
},
|
|
7894
|
+
{
|
|
7895
|
+
name: "permissions",
|
|
7896
|
+
type: "address",
|
|
7897
|
+
internalType: "address",
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
name: "initializeData",
|
|
7901
|
+
type: "bytes",
|
|
7902
|
+
internalType: "bytes",
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
name: "depositData",
|
|
7906
|
+
type: "bytes",
|
|
7907
|
+
internalType: "bytes",
|
|
7908
|
+
},
|
|
7909
|
+
],
|
|
7771
7910
|
},
|
|
7772
7911
|
],
|
|
7773
|
-
name: "flaunch",
|
|
7774
7912
|
outputs: [
|
|
7775
|
-
{
|
|
7776
|
-
|
|
7777
|
-
|
|
7913
|
+
{
|
|
7914
|
+
name: "memecoin_",
|
|
7915
|
+
type: "address",
|
|
7916
|
+
internalType: "address",
|
|
7917
|
+
},
|
|
7918
|
+
{
|
|
7919
|
+
name: "ethSpent_",
|
|
7920
|
+
type: "uint256",
|
|
7921
|
+
internalType: "uint256",
|
|
7922
|
+
},
|
|
7923
|
+
{
|
|
7924
|
+
name: "deployedManager_",
|
|
7925
|
+
type: "address",
|
|
7926
|
+
internalType: "address",
|
|
7927
|
+
},
|
|
7778
7928
|
],
|
|
7779
7929
|
stateMutability: "payable",
|
|
7780
|
-
type: "function",
|
|
7781
7930
|
},
|
|
7782
7931
|
{
|
|
7932
|
+
type: "function",
|
|
7933
|
+
name: "flaunch",
|
|
7783
7934
|
inputs: [
|
|
7784
7935
|
{
|
|
7936
|
+
name: "_flaunchParams",
|
|
7937
|
+
type: "tuple",
|
|
7938
|
+
internalType: "struct PositionManager.FlaunchParams",
|
|
7785
7939
|
components: [
|
|
7786
|
-
{ internalType: "string", name: "name", type: "string" },
|
|
7787
|
-
{ internalType: "string", name: "symbol", type: "string" },
|
|
7788
|
-
{ internalType: "string", name: "tokenUri", type: "string" },
|
|
7789
7940
|
{
|
|
7790
|
-
|
|
7941
|
+
name: "name",
|
|
7942
|
+
type: "string",
|
|
7943
|
+
internalType: "string",
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
name: "symbol",
|
|
7947
|
+
type: "string",
|
|
7948
|
+
internalType: "string",
|
|
7949
|
+
},
|
|
7950
|
+
{
|
|
7951
|
+
name: "tokenUri",
|
|
7952
|
+
type: "string",
|
|
7953
|
+
internalType: "string",
|
|
7954
|
+
},
|
|
7955
|
+
{
|
|
7791
7956
|
name: "initialTokenFairLaunch",
|
|
7792
7957
|
type: "uint256",
|
|
7958
|
+
internalType: "uint256",
|
|
7793
7959
|
},
|
|
7794
7960
|
{
|
|
7795
|
-
internalType: "uint256",
|
|
7796
7961
|
name: "fairLaunchDuration",
|
|
7797
7962
|
type: "uint256",
|
|
7963
|
+
internalType: "uint256",
|
|
7964
|
+
},
|
|
7965
|
+
{
|
|
7966
|
+
name: "premineAmount",
|
|
7967
|
+
type: "uint256",
|
|
7968
|
+
internalType: "uint256",
|
|
7969
|
+
},
|
|
7970
|
+
{
|
|
7971
|
+
name: "creator",
|
|
7972
|
+
type: "address",
|
|
7973
|
+
internalType: "address",
|
|
7798
7974
|
},
|
|
7799
|
-
{ internalType: "uint256", name: "premineAmount", type: "uint256" },
|
|
7800
|
-
{ internalType: "address", name: "creator", type: "address" },
|
|
7801
7975
|
{
|
|
7802
|
-
internalType: "uint24",
|
|
7803
7976
|
name: "creatorFeeAllocation",
|
|
7804
7977
|
type: "uint24",
|
|
7978
|
+
internalType: "uint24",
|
|
7979
|
+
},
|
|
7980
|
+
{
|
|
7981
|
+
name: "flaunchAt",
|
|
7982
|
+
type: "uint256",
|
|
7983
|
+
internalType: "uint256",
|
|
7984
|
+
},
|
|
7985
|
+
{
|
|
7986
|
+
name: "initialPriceParams",
|
|
7987
|
+
type: "bytes",
|
|
7988
|
+
internalType: "bytes",
|
|
7989
|
+
},
|
|
7990
|
+
{
|
|
7991
|
+
name: "feeCalculatorParams",
|
|
7992
|
+
type: "bytes",
|
|
7993
|
+
internalType: "bytes",
|
|
7805
7994
|
},
|
|
7806
|
-
{ internalType: "uint256", name: "flaunchAt", type: "uint256" },
|
|
7807
|
-
{ internalType: "bytes", name: "initialPriceParams", type: "bytes" },
|
|
7808
|
-
{ internalType: "bytes", name: "feeCalculatorParams", type: "bytes" },
|
|
7809
7995
|
],
|
|
7810
|
-
internalType: "struct PositionManager.FlaunchParams",
|
|
7811
|
-
name: "_flaunchParams",
|
|
7812
|
-
type: "tuple",
|
|
7813
7996
|
},
|
|
7814
|
-
{
|
|
7997
|
+
{
|
|
7998
|
+
name: "_trustedFeeSigner",
|
|
7999
|
+
type: "address",
|
|
8000
|
+
internalType: "address",
|
|
8001
|
+
},
|
|
8002
|
+
{
|
|
8003
|
+
name: "_premineSwapHookData",
|
|
8004
|
+
type: "bytes",
|
|
8005
|
+
internalType: "bytes",
|
|
8006
|
+
},
|
|
7815
8007
|
],
|
|
7816
|
-
name: "flaunch",
|
|
7817
8008
|
outputs: [
|
|
7818
|
-
{
|
|
7819
|
-
|
|
7820
|
-
|
|
8009
|
+
{
|
|
8010
|
+
name: "memecoin_",
|
|
8011
|
+
type: "address",
|
|
8012
|
+
internalType: "address",
|
|
8013
|
+
},
|
|
8014
|
+
{
|
|
8015
|
+
name: "ethSpent_",
|
|
8016
|
+
type: "uint256",
|
|
8017
|
+
internalType: "uint256",
|
|
8018
|
+
},
|
|
8019
|
+
{
|
|
8020
|
+
name: "",
|
|
8021
|
+
type: "address",
|
|
8022
|
+
internalType: "address",
|
|
8023
|
+
},
|
|
7821
8024
|
],
|
|
7822
8025
|
stateMutability: "payable",
|
|
7823
|
-
type: "function",
|
|
7824
8026
|
},
|
|
7825
8027
|
{
|
|
7826
|
-
|
|
8028
|
+
type: "function",
|
|
7827
8029
|
name: "flaunchContract",
|
|
7828
|
-
|
|
8030
|
+
inputs: [],
|
|
8031
|
+
outputs: [
|
|
8032
|
+
{
|
|
8033
|
+
name: "",
|
|
8034
|
+
type: "address",
|
|
8035
|
+
internalType: "contract Flaunch",
|
|
8036
|
+
},
|
|
8037
|
+
],
|
|
7829
8038
|
stateMutability: "view",
|
|
7830
|
-
type: "function",
|
|
7831
8039
|
},
|
|
7832
8040
|
{
|
|
7833
|
-
|
|
8041
|
+
type: "function",
|
|
7834
8042
|
name: "merkleAirdrop",
|
|
8043
|
+
inputs: [],
|
|
7835
8044
|
outputs: [
|
|
7836
|
-
{
|
|
8045
|
+
{
|
|
8046
|
+
name: "",
|
|
8047
|
+
type: "address",
|
|
8048
|
+
internalType: "contract IMerkleAirdrop",
|
|
8049
|
+
},
|
|
7837
8050
|
],
|
|
7838
8051
|
stateMutability: "view",
|
|
7839
|
-
type: "function",
|
|
7840
8052
|
},
|
|
7841
8053
|
{
|
|
7842
|
-
|
|
8054
|
+
type: "function",
|
|
7843
8055
|
name: "poolSwap",
|
|
7844
|
-
|
|
8056
|
+
inputs: [],
|
|
8057
|
+
outputs: [
|
|
8058
|
+
{
|
|
8059
|
+
name: "",
|
|
8060
|
+
type: "address",
|
|
8061
|
+
internalType: "contract PoolSwap",
|
|
8062
|
+
},
|
|
8063
|
+
],
|
|
7845
8064
|
stateMutability: "view",
|
|
7846
|
-
type: "function",
|
|
7847
8065
|
},
|
|
7848
8066
|
{
|
|
7849
|
-
|
|
8067
|
+
type: "function",
|
|
7850
8068
|
name: "positionManager",
|
|
8069
|
+
inputs: [],
|
|
7851
8070
|
outputs: [
|
|
7852
|
-
{
|
|
8071
|
+
{
|
|
8072
|
+
name: "",
|
|
8073
|
+
type: "address",
|
|
8074
|
+
internalType: "contract PositionManager",
|
|
8075
|
+
},
|
|
7853
8076
|
],
|
|
7854
8077
|
stateMutability: "view",
|
|
7855
|
-
type: "function",
|
|
7856
8078
|
},
|
|
7857
8079
|
{
|
|
7858
|
-
|
|
8080
|
+
type: "function",
|
|
7859
8081
|
name: "treasuryManagerFactory",
|
|
8082
|
+
inputs: [],
|
|
7860
8083
|
outputs: [
|
|
7861
8084
|
{
|
|
7862
|
-
internalType: "contract ITreasuryManagerFactory",
|
|
7863
8085
|
name: "",
|
|
7864
8086
|
type: "address",
|
|
8087
|
+
internalType: "contract ITreasuryManagerFactory",
|
|
7865
8088
|
},
|
|
7866
8089
|
],
|
|
7867
8090
|
stateMutability: "view",
|
|
7868
|
-
type: "function",
|
|
7869
8091
|
},
|
|
7870
8092
|
{
|
|
7871
|
-
|
|
8093
|
+
type: "function",
|
|
7872
8094
|
name: "whitelistFairLaunch",
|
|
8095
|
+
inputs: [],
|
|
7873
8096
|
outputs: [
|
|
7874
8097
|
{
|
|
7875
|
-
internalType: "contract WhitelistFairLaunch",
|
|
7876
8098
|
name: "",
|
|
7877
8099
|
type: "address",
|
|
8100
|
+
internalType: "contract WhitelistFairLaunch",
|
|
7878
8101
|
},
|
|
7879
8102
|
],
|
|
7880
8103
|
stateMutability: "view",
|
|
7881
|
-
type: "function",
|
|
7882
8104
|
},
|
|
7883
|
-
{
|
|
8105
|
+
{
|
|
8106
|
+
type: "error",
|
|
8107
|
+
name: "CreatorCannotBeZero",
|
|
8108
|
+
inputs: [],
|
|
8109
|
+
},
|
|
8110
|
+
{
|
|
8111
|
+
type: "error",
|
|
8112
|
+
name: "InsufficientMemecoinsForAirdrop",
|
|
8113
|
+
inputs: [],
|
|
8114
|
+
},
|
|
7884
8115
|
];
|
|
7885
8116
|
|
|
7886
8117
|
const InitialPriceAbi = [
|