@pump-fun/pump-sdk 1.31.0 → 1.32.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/README.md +34 -0
- package/dist/esm/index.js +368 -285
- package/dist/index.d.mts +1973 -1353
- package/dist/index.d.ts +1973 -1353
- package/dist/index.js +368 -285
- package/package.json +1 -1
- package/src/idl/pump_fees.json +348 -284
- package/src/idl/pump_fees.ts +2496 -1897
- package/src/index.ts +1 -0
- package/src/sdk.ts +35 -1
package/dist/index.d.ts
CHANGED
|
@@ -13430,34 +13430,43 @@ var pump = {
|
|
|
13430
13430
|
* Note that this is only a type helper and is not the actual IDL. The original
|
|
13431
13431
|
* IDL can be found at `target/idl/pump_fees.json`.
|
|
13432
13432
|
*/
|
|
13433
|
-
|
|
13434
|
-
address: "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
13435
|
-
metadata: {
|
|
13436
|
-
name: "pumpFees";
|
|
13437
|
-
version: "0.1.0";
|
|
13438
|
-
spec: "0.1.0";
|
|
13439
|
-
description: "Created with Anchor";
|
|
13433
|
+
type PumpFees = {
|
|
13434
|
+
"address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
13435
|
+
"metadata": {
|
|
13436
|
+
"name": "pumpFees";
|
|
13437
|
+
"version": "0.1.0";
|
|
13438
|
+
"spec": "0.1.0";
|
|
13439
|
+
"description": "Created with Anchor";
|
|
13440
13440
|
};
|
|
13441
|
-
instructions: [
|
|
13442
|
-
{
|
|
13443
|
-
name: "claimSocialFeePda";
|
|
13444
|
-
discriminator: [
|
|
13445
|
-
|
|
13441
|
+
"instructions": [
|
|
13442
|
+
{
|
|
13443
|
+
"name": "claimSocialFeePda";
|
|
13444
|
+
"discriminator": [
|
|
13445
|
+
225,
|
|
13446
|
+
21,
|
|
13447
|
+
251,
|
|
13448
|
+
133,
|
|
13449
|
+
161,
|
|
13450
|
+
30,
|
|
13451
|
+
199,
|
|
13452
|
+
226
|
|
13453
|
+
];
|
|
13454
|
+
"accounts": [
|
|
13446
13455
|
{
|
|
13447
|
-
name: "recipient";
|
|
13448
|
-
writable: true;
|
|
13456
|
+
"name": "recipient";
|
|
13457
|
+
"writable": true;
|
|
13449
13458
|
},
|
|
13450
13459
|
{
|
|
13451
|
-
name: "socialFeePda";
|
|
13452
|
-
writable: true;
|
|
13460
|
+
"name": "socialFeePda";
|
|
13461
|
+
"writable": true;
|
|
13453
13462
|
},
|
|
13454
13463
|
{
|
|
13455
|
-
name: "feeProgramGlobal";
|
|
13456
|
-
pda: {
|
|
13457
|
-
seeds: [
|
|
13464
|
+
"name": "feeProgramGlobal";
|
|
13465
|
+
"pda": {
|
|
13466
|
+
"seeds": [
|
|
13458
13467
|
{
|
|
13459
|
-
kind: "const";
|
|
13460
|
-
value: [
|
|
13468
|
+
"kind": "const";
|
|
13469
|
+
"value": [
|
|
13461
13470
|
102,
|
|
13462
13471
|
101,
|
|
13463
13472
|
101,
|
|
@@ -13482,17 +13491,19 @@ interface PumpFees {
|
|
|
13482
13491
|
};
|
|
13483
13492
|
},
|
|
13484
13493
|
{
|
|
13485
|
-
name: "socialClaimAuthority";
|
|
13486
|
-
signer: true;
|
|
13487
|
-
relations: [
|
|
13494
|
+
"name": "socialClaimAuthority";
|
|
13495
|
+
"signer": true;
|
|
13496
|
+
"relations": [
|
|
13497
|
+
"feeProgramGlobal"
|
|
13498
|
+
];
|
|
13488
13499
|
},
|
|
13489
13500
|
{
|
|
13490
|
-
name: "eventAuthority";
|
|
13491
|
-
pda: {
|
|
13492
|
-
seeds: [
|
|
13501
|
+
"name": "eventAuthority";
|
|
13502
|
+
"pda": {
|
|
13503
|
+
"seeds": [
|
|
13493
13504
|
{
|
|
13494
|
-
kind: "const";
|
|
13495
|
-
value: [
|
|
13505
|
+
"kind": "const";
|
|
13506
|
+
"value": [
|
|
13496
13507
|
95,
|
|
13497
13508
|
95,
|
|
13498
13509
|
101,
|
|
@@ -13516,39 +13527,50 @@ interface PumpFees {
|
|
|
13516
13527
|
};
|
|
13517
13528
|
},
|
|
13518
13529
|
{
|
|
13519
|
-
name: "program";
|
|
13530
|
+
"name": "program";
|
|
13520
13531
|
}
|
|
13521
13532
|
];
|
|
13522
|
-
args: [
|
|
13533
|
+
"args": [
|
|
13523
13534
|
{
|
|
13524
|
-
name: "userId";
|
|
13525
|
-
type: "string";
|
|
13535
|
+
"name": "userId";
|
|
13536
|
+
"type": "string";
|
|
13526
13537
|
},
|
|
13527
13538
|
{
|
|
13528
|
-
name: "platform";
|
|
13529
|
-
type: "u8";
|
|
13539
|
+
"name": "platform";
|
|
13540
|
+
"type": "u8";
|
|
13530
13541
|
}
|
|
13531
13542
|
];
|
|
13532
|
-
returns: {
|
|
13533
|
-
option: {
|
|
13534
|
-
defined: {
|
|
13535
|
-
name: "socialFeePdaClaimed";
|
|
13543
|
+
"returns": {
|
|
13544
|
+
"option": {
|
|
13545
|
+
"defined": {
|
|
13546
|
+
"name": "socialFeePdaClaimed";
|
|
13536
13547
|
};
|
|
13537
13548
|
};
|
|
13538
13549
|
};
|
|
13539
13550
|
},
|
|
13540
13551
|
{
|
|
13541
|
-
name: "createFeeSharingConfig";
|
|
13542
|
-
docs: [
|
|
13543
|
-
|
|
13544
|
-
|
|
13552
|
+
"name": "createFeeSharingConfig";
|
|
13553
|
+
"docs": [
|
|
13554
|
+
"Create Fee Sharing Config"
|
|
13555
|
+
];
|
|
13556
|
+
"discriminator": [
|
|
13557
|
+
195,
|
|
13558
|
+
78,
|
|
13559
|
+
86,
|
|
13560
|
+
76,
|
|
13561
|
+
111,
|
|
13562
|
+
52,
|
|
13563
|
+
251,
|
|
13564
|
+
213
|
|
13565
|
+
];
|
|
13566
|
+
"accounts": [
|
|
13545
13567
|
{
|
|
13546
|
-
name: "eventAuthority";
|
|
13547
|
-
pda: {
|
|
13548
|
-
seeds: [
|
|
13568
|
+
"name": "eventAuthority";
|
|
13569
|
+
"pda": {
|
|
13570
|
+
"seeds": [
|
|
13549
13571
|
{
|
|
13550
|
-
kind: "const";
|
|
13551
|
-
value: [
|
|
13572
|
+
"kind": "const";
|
|
13573
|
+
"value": [
|
|
13552
13574
|
95,
|
|
13553
13575
|
95,
|
|
13554
13576
|
101,
|
|
@@ -13572,26 +13594,33 @@ interface PumpFees {
|
|
|
13572
13594
|
};
|
|
13573
13595
|
},
|
|
13574
13596
|
{
|
|
13575
|
-
name: "program";
|
|
13576
|
-
address: "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
13597
|
+
"name": "program";
|
|
13598
|
+
"address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
13577
13599
|
},
|
|
13578
13600
|
{
|
|
13579
|
-
name: "payer";
|
|
13580
|
-
writable: true;
|
|
13581
|
-
signer: true;
|
|
13601
|
+
"name": "payer";
|
|
13602
|
+
"writable": true;
|
|
13603
|
+
"signer": true;
|
|
13582
13604
|
},
|
|
13583
13605
|
{
|
|
13584
|
-
name: "global";
|
|
13585
|
-
pda: {
|
|
13586
|
-
seeds: [
|
|
13606
|
+
"name": "global";
|
|
13607
|
+
"pda": {
|
|
13608
|
+
"seeds": [
|
|
13587
13609
|
{
|
|
13588
|
-
kind: "const";
|
|
13589
|
-
value: [
|
|
13610
|
+
"kind": "const";
|
|
13611
|
+
"value": [
|
|
13612
|
+
103,
|
|
13613
|
+
108,
|
|
13614
|
+
111,
|
|
13615
|
+
98,
|
|
13616
|
+
97,
|
|
13617
|
+
108
|
|
13618
|
+
];
|
|
13590
13619
|
}
|
|
13591
13620
|
];
|
|
13592
|
-
program: {
|
|
13593
|
-
kind: "const";
|
|
13594
|
-
value: [
|
|
13621
|
+
"program": {
|
|
13622
|
+
"kind": "const";
|
|
13623
|
+
"value": [
|
|
13595
13624
|
1,
|
|
13596
13625
|
86,
|
|
13597
13626
|
224,
|
|
@@ -13629,16 +13658,16 @@ interface PumpFees {
|
|
|
13629
13658
|
};
|
|
13630
13659
|
},
|
|
13631
13660
|
{
|
|
13632
|
-
name: "mint";
|
|
13661
|
+
"name": "mint";
|
|
13633
13662
|
},
|
|
13634
13663
|
{
|
|
13635
|
-
name: "sharingConfig";
|
|
13636
|
-
writable: true;
|
|
13637
|
-
pda: {
|
|
13638
|
-
seeds: [
|
|
13664
|
+
"name": "sharingConfig";
|
|
13665
|
+
"writable": true;
|
|
13666
|
+
"pda": {
|
|
13667
|
+
"seeds": [
|
|
13639
13668
|
{
|
|
13640
|
-
kind: "const";
|
|
13641
|
-
value: [
|
|
13669
|
+
"kind": "const";
|
|
13670
|
+
"value": [
|
|
13642
13671
|
115,
|
|
13643
13672
|
104,
|
|
13644
13673
|
97,
|
|
@@ -13656,24 +13685,24 @@ interface PumpFees {
|
|
|
13656
13685
|
];
|
|
13657
13686
|
},
|
|
13658
13687
|
{
|
|
13659
|
-
kind: "account";
|
|
13660
|
-
path: "mint";
|
|
13688
|
+
"kind": "account";
|
|
13689
|
+
"path": "mint";
|
|
13661
13690
|
}
|
|
13662
13691
|
];
|
|
13663
13692
|
};
|
|
13664
13693
|
},
|
|
13665
13694
|
{
|
|
13666
|
-
name: "systemProgram";
|
|
13667
|
-
address: "11111111111111111111111111111111";
|
|
13695
|
+
"name": "systemProgram";
|
|
13696
|
+
"address": "11111111111111111111111111111111";
|
|
13668
13697
|
},
|
|
13669
13698
|
{
|
|
13670
|
-
name: "bondingCurve";
|
|
13671
|
-
writable: true;
|
|
13672
|
-
pda: {
|
|
13673
|
-
seeds: [
|
|
13699
|
+
"name": "bondingCurve";
|
|
13700
|
+
"writable": true;
|
|
13701
|
+
"pda": {
|
|
13702
|
+
"seeds": [
|
|
13674
13703
|
{
|
|
13675
|
-
kind: "const";
|
|
13676
|
-
value: [
|
|
13704
|
+
"kind": "const";
|
|
13705
|
+
"value": [
|
|
13677
13706
|
98,
|
|
13678
13707
|
111,
|
|
13679
13708
|
110,
|
|
@@ -13690,13 +13719,13 @@ interface PumpFees {
|
|
|
13690
13719
|
];
|
|
13691
13720
|
},
|
|
13692
13721
|
{
|
|
13693
|
-
kind: "account";
|
|
13694
|
-
path: "mint";
|
|
13722
|
+
"kind": "account";
|
|
13723
|
+
"path": "mint";
|
|
13695
13724
|
}
|
|
13696
13725
|
];
|
|
13697
|
-
program: {
|
|
13698
|
-
kind: "const";
|
|
13699
|
-
value: [
|
|
13726
|
+
"program": {
|
|
13727
|
+
"kind": "const";
|
|
13728
|
+
"value": [
|
|
13700
13729
|
1,
|
|
13701
13730
|
86,
|
|
13702
13731
|
224,
|
|
@@ -13734,16 +13763,16 @@ interface PumpFees {
|
|
|
13734
13763
|
};
|
|
13735
13764
|
},
|
|
13736
13765
|
{
|
|
13737
|
-
name: "pumpProgram";
|
|
13738
|
-
address: "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P";
|
|
13766
|
+
"name": "pumpProgram";
|
|
13767
|
+
"address": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P";
|
|
13739
13768
|
},
|
|
13740
13769
|
{
|
|
13741
|
-
name: "pumpEventAuthority";
|
|
13742
|
-
pda: {
|
|
13743
|
-
seeds: [
|
|
13770
|
+
"name": "pumpEventAuthority";
|
|
13771
|
+
"pda": {
|
|
13772
|
+
"seeds": [
|
|
13744
13773
|
{
|
|
13745
|
-
kind: "const";
|
|
13746
|
-
value: [
|
|
13774
|
+
"kind": "const";
|
|
13775
|
+
"value": [
|
|
13747
13776
|
95,
|
|
13748
13777
|
95,
|
|
13749
13778
|
101,
|
|
@@ -13764,9 +13793,9 @@ interface PumpFees {
|
|
|
13764
13793
|
];
|
|
13765
13794
|
}
|
|
13766
13795
|
];
|
|
13767
|
-
program: {
|
|
13768
|
-
kind: "const";
|
|
13769
|
-
value: [
|
|
13796
|
+
"program": {
|
|
13797
|
+
"kind": "const";
|
|
13798
|
+
"value": [
|
|
13770
13799
|
1,
|
|
13771
13800
|
86,
|
|
13772
13801
|
224,
|
|
@@ -13804,23 +13833,23 @@ interface PumpFees {
|
|
|
13804
13833
|
};
|
|
13805
13834
|
},
|
|
13806
13835
|
{
|
|
13807
|
-
name: "pool";
|
|
13808
|
-
writable: true;
|
|
13809
|
-
optional: true;
|
|
13836
|
+
"name": "pool";
|
|
13837
|
+
"writable": true;
|
|
13838
|
+
"optional": true;
|
|
13810
13839
|
},
|
|
13811
13840
|
{
|
|
13812
|
-
name: "pumpAmmProgram";
|
|
13813
|
-
optional: true;
|
|
13814
|
-
address: "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA";
|
|
13841
|
+
"name": "pumpAmmProgram";
|
|
13842
|
+
"optional": true;
|
|
13843
|
+
"address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA";
|
|
13815
13844
|
},
|
|
13816
13845
|
{
|
|
13817
|
-
name: "pumpAmmEventAuthority";
|
|
13818
|
-
optional: true;
|
|
13819
|
-
pda: {
|
|
13820
|
-
seeds: [
|
|
13846
|
+
"name": "pumpAmmEventAuthority";
|
|
13847
|
+
"optional": true;
|
|
13848
|
+
"pda": {
|
|
13849
|
+
"seeds": [
|
|
13821
13850
|
{
|
|
13822
|
-
kind: "const";
|
|
13823
|
-
value: [
|
|
13851
|
+
"kind": "const";
|
|
13852
|
+
"value": [
|
|
13824
13853
|
95,
|
|
13825
13854
|
95,
|
|
13826
13855
|
101,
|
|
@@ -13841,9 +13870,9 @@ interface PumpFees {
|
|
|
13841
13870
|
];
|
|
13842
13871
|
}
|
|
13843
13872
|
];
|
|
13844
|
-
program: {
|
|
13845
|
-
kind: "const";
|
|
13846
|
-
value: [
|
|
13873
|
+
"program": {
|
|
13874
|
+
"kind": "const";
|
|
13875
|
+
"value": [
|
|
13847
13876
|
12,
|
|
13848
13877
|
20,
|
|
13849
13878
|
222,
|
|
@@ -13881,32 +13910,41 @@ interface PumpFees {
|
|
|
13881
13910
|
};
|
|
13882
13911
|
}
|
|
13883
13912
|
];
|
|
13884
|
-
args: [];
|
|
13885
|
-
},
|
|
13886
|
-
{
|
|
13887
|
-
name: "createSocialFeePda";
|
|
13888
|
-
discriminator: [
|
|
13889
|
-
|
|
13913
|
+
"args": [];
|
|
13914
|
+
},
|
|
13915
|
+
{
|
|
13916
|
+
"name": "createSocialFeePda";
|
|
13917
|
+
"discriminator": [
|
|
13918
|
+
144,
|
|
13919
|
+
224,
|
|
13920
|
+
59,
|
|
13921
|
+
211,
|
|
13922
|
+
78,
|
|
13923
|
+
248,
|
|
13924
|
+
202,
|
|
13925
|
+
220
|
|
13926
|
+
];
|
|
13927
|
+
"accounts": [
|
|
13890
13928
|
{
|
|
13891
|
-
name: "payer";
|
|
13892
|
-
writable: true;
|
|
13893
|
-
signer: true;
|
|
13929
|
+
"name": "payer";
|
|
13930
|
+
"writable": true;
|
|
13931
|
+
"signer": true;
|
|
13894
13932
|
},
|
|
13895
13933
|
{
|
|
13896
|
-
name: "socialFeePda";
|
|
13897
|
-
writable: true;
|
|
13934
|
+
"name": "socialFeePda";
|
|
13935
|
+
"writable": true;
|
|
13898
13936
|
},
|
|
13899
13937
|
{
|
|
13900
|
-
name: "systemProgram";
|
|
13901
|
-
address: "11111111111111111111111111111111";
|
|
13938
|
+
"name": "systemProgram";
|
|
13939
|
+
"address": "11111111111111111111111111111111";
|
|
13902
13940
|
},
|
|
13903
13941
|
{
|
|
13904
|
-
name: "feeProgramGlobal";
|
|
13905
|
-
pda: {
|
|
13906
|
-
seeds: [
|
|
13942
|
+
"name": "feeProgramGlobal";
|
|
13943
|
+
"pda": {
|
|
13944
|
+
"seeds": [
|
|
13907
13945
|
{
|
|
13908
|
-
kind: "const";
|
|
13909
|
-
value: [
|
|
13946
|
+
"kind": "const";
|
|
13947
|
+
"value": [
|
|
13910
13948
|
102,
|
|
13911
13949
|
101,
|
|
13912
13950
|
101,
|
|
@@ -13931,12 +13969,12 @@ interface PumpFees {
|
|
|
13931
13969
|
};
|
|
13932
13970
|
},
|
|
13933
13971
|
{
|
|
13934
|
-
name: "eventAuthority";
|
|
13935
|
-
pda: {
|
|
13936
|
-
seeds: [
|
|
13972
|
+
"name": "eventAuthority";
|
|
13973
|
+
"pda": {
|
|
13974
|
+
"seeds": [
|
|
13937
13975
|
{
|
|
13938
|
-
kind: "const";
|
|
13939
|
-
value: [
|
|
13976
|
+
"kind": "const";
|
|
13977
|
+
"value": [
|
|
13940
13978
|
95,
|
|
13941
13979
|
95,
|
|
13942
13980
|
101,
|
|
@@ -13960,105 +13998,149 @@ interface PumpFees {
|
|
|
13960
13998
|
};
|
|
13961
13999
|
},
|
|
13962
14000
|
{
|
|
13963
|
-
name: "program";
|
|
14001
|
+
"name": "program";
|
|
13964
14002
|
}
|
|
13965
14003
|
];
|
|
13966
|
-
args: [
|
|
14004
|
+
"args": [
|
|
13967
14005
|
{
|
|
13968
|
-
name: "userId";
|
|
13969
|
-
type: "string";
|
|
14006
|
+
"name": "userId";
|
|
14007
|
+
"type": "string";
|
|
13970
14008
|
},
|
|
13971
14009
|
{
|
|
13972
|
-
name: "platform";
|
|
13973
|
-
type: "u8";
|
|
14010
|
+
"name": "platform";
|
|
14011
|
+
"type": "u8";
|
|
13974
14012
|
}
|
|
13975
14013
|
];
|
|
13976
14014
|
},
|
|
13977
14015
|
{
|
|
13978
|
-
name: "getFees";
|
|
13979
|
-
docs: [
|
|
13980
|
-
|
|
13981
|
-
|
|
14016
|
+
"name": "getFees";
|
|
14017
|
+
"docs": [
|
|
14018
|
+
"Get Fees"
|
|
14019
|
+
];
|
|
14020
|
+
"discriminator": [
|
|
14021
|
+
231,
|
|
14022
|
+
37,
|
|
14023
|
+
126,
|
|
14024
|
+
85,
|
|
14025
|
+
207,
|
|
14026
|
+
91,
|
|
14027
|
+
63,
|
|
14028
|
+
52
|
|
14029
|
+
];
|
|
14030
|
+
"accounts": [
|
|
13982
14031
|
{
|
|
13983
|
-
name: "feeConfig";
|
|
13984
|
-
pda: {
|
|
13985
|
-
seeds: [
|
|
14032
|
+
"name": "feeConfig";
|
|
14033
|
+
"pda": {
|
|
14034
|
+
"seeds": [
|
|
13986
14035
|
{
|
|
13987
|
-
kind: "const";
|
|
13988
|
-
value: [
|
|
14036
|
+
"kind": "const";
|
|
14037
|
+
"value": [
|
|
14038
|
+
102,
|
|
14039
|
+
101,
|
|
14040
|
+
101,
|
|
14041
|
+
95,
|
|
14042
|
+
99,
|
|
14043
|
+
111,
|
|
14044
|
+
110,
|
|
14045
|
+
102,
|
|
14046
|
+
105,
|
|
14047
|
+
103
|
|
14048
|
+
];
|
|
13989
14049
|
},
|
|
13990
14050
|
{
|
|
13991
|
-
kind: "account";
|
|
13992
|
-
path: "configProgramId";
|
|
14051
|
+
"kind": "account";
|
|
14052
|
+
"path": "configProgramId";
|
|
13993
14053
|
}
|
|
13994
14054
|
];
|
|
13995
14055
|
};
|
|
13996
14056
|
},
|
|
13997
14057
|
{
|
|
13998
|
-
name: "configProgramId";
|
|
14058
|
+
"name": "configProgramId";
|
|
13999
14059
|
}
|
|
14000
14060
|
];
|
|
14001
|
-
args: [
|
|
14061
|
+
"args": [
|
|
14002
14062
|
{
|
|
14003
|
-
name: "isPumpPool";
|
|
14004
|
-
type: "bool";
|
|
14063
|
+
"name": "isPumpPool";
|
|
14064
|
+
"type": "bool";
|
|
14005
14065
|
},
|
|
14006
14066
|
{
|
|
14007
|
-
name: "marketCapLamports";
|
|
14008
|
-
type: "u128";
|
|
14067
|
+
"name": "marketCapLamports";
|
|
14068
|
+
"type": "u128";
|
|
14009
14069
|
},
|
|
14010
14070
|
{
|
|
14011
|
-
name: "tradeSizeLamports";
|
|
14012
|
-
type: "u64";
|
|
14071
|
+
"name": "tradeSizeLamports";
|
|
14072
|
+
"type": "u64";
|
|
14013
14073
|
}
|
|
14014
14074
|
];
|
|
14015
|
-
returns: {
|
|
14016
|
-
defined: {
|
|
14017
|
-
name: "fees";
|
|
14075
|
+
"returns": {
|
|
14076
|
+
"defined": {
|
|
14077
|
+
"name": "fees";
|
|
14018
14078
|
};
|
|
14019
14079
|
};
|
|
14020
14080
|
},
|
|
14021
14081
|
{
|
|
14022
|
-
name: "initializeFeeConfig";
|
|
14023
|
-
docs: [
|
|
14024
|
-
|
|
14025
|
-
|
|
14082
|
+
"name": "initializeFeeConfig";
|
|
14083
|
+
"docs": [
|
|
14084
|
+
"Initialize FeeConfig admin"
|
|
14085
|
+
];
|
|
14086
|
+
"discriminator": [
|
|
14087
|
+
62,
|
|
14088
|
+
162,
|
|
14089
|
+
20,
|
|
14090
|
+
133,
|
|
14091
|
+
121,
|
|
14092
|
+
65,
|
|
14093
|
+
145,
|
|
14094
|
+
27
|
|
14095
|
+
];
|
|
14096
|
+
"accounts": [
|
|
14026
14097
|
{
|
|
14027
|
-
name: "admin";
|
|
14028
|
-
writable: true;
|
|
14029
|
-
signer: true;
|
|
14030
|
-
address: "8LWu7QM2dGR1G8nKDHthckea57bkCzXyBTAKPJUBDHo8";
|
|
14098
|
+
"name": "admin";
|
|
14099
|
+
"writable": true;
|
|
14100
|
+
"signer": true;
|
|
14101
|
+
"address": "8LWu7QM2dGR1G8nKDHthckea57bkCzXyBTAKPJUBDHo8";
|
|
14031
14102
|
},
|
|
14032
14103
|
{
|
|
14033
|
-
name: "feeConfig";
|
|
14034
|
-
writable: true;
|
|
14035
|
-
pda: {
|
|
14036
|
-
seeds: [
|
|
14104
|
+
"name": "feeConfig";
|
|
14105
|
+
"writable": true;
|
|
14106
|
+
"pda": {
|
|
14107
|
+
"seeds": [
|
|
14037
14108
|
{
|
|
14038
|
-
kind: "const";
|
|
14039
|
-
value: [
|
|
14109
|
+
"kind": "const";
|
|
14110
|
+
"value": [
|
|
14111
|
+
102,
|
|
14112
|
+
101,
|
|
14113
|
+
101,
|
|
14114
|
+
95,
|
|
14115
|
+
99,
|
|
14116
|
+
111,
|
|
14117
|
+
110,
|
|
14118
|
+
102,
|
|
14119
|
+
105,
|
|
14120
|
+
103
|
|
14121
|
+
];
|
|
14040
14122
|
},
|
|
14041
14123
|
{
|
|
14042
|
-
kind: "account";
|
|
14043
|
-
path: "configProgramId";
|
|
14124
|
+
"kind": "account";
|
|
14125
|
+
"path": "configProgramId";
|
|
14044
14126
|
}
|
|
14045
14127
|
];
|
|
14046
14128
|
};
|
|
14047
14129
|
},
|
|
14048
14130
|
{
|
|
14049
|
-
name: "systemProgram";
|
|
14050
|
-
address: "11111111111111111111111111111111";
|
|
14131
|
+
"name": "systemProgram";
|
|
14132
|
+
"address": "11111111111111111111111111111111";
|
|
14051
14133
|
},
|
|
14052
14134
|
{
|
|
14053
|
-
name: "configProgramId";
|
|
14135
|
+
"name": "configProgramId";
|
|
14054
14136
|
},
|
|
14055
14137
|
{
|
|
14056
|
-
name: "eventAuthority";
|
|
14057
|
-
pda: {
|
|
14058
|
-
seeds: [
|
|
14138
|
+
"name": "eventAuthority";
|
|
14139
|
+
"pda": {
|
|
14140
|
+
"seeds": [
|
|
14059
14141
|
{
|
|
14060
|
-
kind: "const";
|
|
14061
|
-
value: [
|
|
14142
|
+
"kind": "const";
|
|
14143
|
+
"value": [
|
|
14062
14144
|
95,
|
|
14063
14145
|
95,
|
|
14064
14146
|
101,
|
|
@@ -14082,33 +14164,51 @@ interface PumpFees {
|
|
|
14082
14164
|
};
|
|
14083
14165
|
},
|
|
14084
14166
|
{
|
|
14085
|
-
name: "program";
|
|
14167
|
+
"name": "program";
|
|
14086
14168
|
}
|
|
14087
14169
|
];
|
|
14088
|
-
args: [];
|
|
14089
|
-
},
|
|
14090
|
-
{
|
|
14091
|
-
name: "initializeFeeProgramGlobal";
|
|
14092
|
-
discriminator: [
|
|
14093
|
-
|
|
14170
|
+
"args": [];
|
|
14171
|
+
},
|
|
14172
|
+
{
|
|
14173
|
+
"name": "initializeFeeProgramGlobal";
|
|
14174
|
+
"discriminator": [
|
|
14175
|
+
35,
|
|
14176
|
+
215,
|
|
14177
|
+
130,
|
|
14178
|
+
84,
|
|
14179
|
+
233,
|
|
14180
|
+
56,
|
|
14181
|
+
124,
|
|
14182
|
+
167
|
|
14183
|
+
];
|
|
14184
|
+
"accounts": [
|
|
14094
14185
|
{
|
|
14095
|
-
name: "authority";
|
|
14096
|
-
writable: true;
|
|
14097
|
-
signer: true;
|
|
14098
|
-
relations: [
|
|
14186
|
+
"name": "authority";
|
|
14187
|
+
"writable": true;
|
|
14188
|
+
"signer": true;
|
|
14189
|
+
"relations": [
|
|
14190
|
+
"pumpGlobal"
|
|
14191
|
+
];
|
|
14099
14192
|
},
|
|
14100
14193
|
{
|
|
14101
|
-
name: "pumpGlobal";
|
|
14102
|
-
pda: {
|
|
14103
|
-
seeds: [
|
|
14194
|
+
"name": "pumpGlobal";
|
|
14195
|
+
"pda": {
|
|
14196
|
+
"seeds": [
|
|
14104
14197
|
{
|
|
14105
|
-
kind: "const";
|
|
14106
|
-
value: [
|
|
14198
|
+
"kind": "const";
|
|
14199
|
+
"value": [
|
|
14200
|
+
103,
|
|
14201
|
+
108,
|
|
14202
|
+
111,
|
|
14203
|
+
98,
|
|
14204
|
+
97,
|
|
14205
|
+
108
|
|
14206
|
+
];
|
|
14107
14207
|
}
|
|
14108
14208
|
];
|
|
14109
|
-
program: {
|
|
14110
|
-
kind: "const";
|
|
14111
|
-
value: [
|
|
14209
|
+
"program": {
|
|
14210
|
+
"kind": "const";
|
|
14211
|
+
"value": [
|
|
14112
14212
|
1,
|
|
14113
14213
|
86,
|
|
14114
14214
|
224,
|
|
@@ -14146,13 +14246,13 @@ interface PumpFees {
|
|
|
14146
14246
|
};
|
|
14147
14247
|
},
|
|
14148
14248
|
{
|
|
14149
|
-
name: "feeProgramGlobal";
|
|
14150
|
-
writable: true;
|
|
14151
|
-
pda: {
|
|
14152
|
-
seeds: [
|
|
14249
|
+
"name": "feeProgramGlobal";
|
|
14250
|
+
"writable": true;
|
|
14251
|
+
"pda": {
|
|
14252
|
+
"seeds": [
|
|
14153
14253
|
{
|
|
14154
|
-
kind: "const";
|
|
14155
|
-
value: [
|
|
14254
|
+
"kind": "const";
|
|
14255
|
+
"value": [
|
|
14156
14256
|
102,
|
|
14157
14257
|
101,
|
|
14158
14258
|
101,
|
|
@@ -14177,16 +14277,16 @@ interface PumpFees {
|
|
|
14177
14277
|
};
|
|
14178
14278
|
},
|
|
14179
14279
|
{
|
|
14180
|
-
name: "systemProgram";
|
|
14181
|
-
address: "11111111111111111111111111111111";
|
|
14280
|
+
"name": "systemProgram";
|
|
14281
|
+
"address": "11111111111111111111111111111111";
|
|
14182
14282
|
},
|
|
14183
14283
|
{
|
|
14184
|
-
name: "eventAuthority";
|
|
14185
|
-
pda: {
|
|
14186
|
-
seeds: [
|
|
14284
|
+
"name": "eventAuthority";
|
|
14285
|
+
"pda": {
|
|
14286
|
+
"seeds": [
|
|
14187
14287
|
{
|
|
14188
|
-
kind: "const";
|
|
14189
|
-
value: [
|
|
14288
|
+
"kind": "const";
|
|
14289
|
+
"value": [
|
|
14190
14290
|
95,
|
|
14191
14291
|
95,
|
|
14192
14292
|
101,
|
|
@@ -14210,60 +14310,112 @@ interface PumpFees {
|
|
|
14210
14310
|
};
|
|
14211
14311
|
},
|
|
14212
14312
|
{
|
|
14213
|
-
name: "program";
|
|
14313
|
+
"name": "program";
|
|
14214
14314
|
}
|
|
14215
14315
|
];
|
|
14216
|
-
args: [
|
|
14316
|
+
"args": [
|
|
14217
14317
|
{
|
|
14218
|
-
name: "socialClaimAuthority";
|
|
14219
|
-
type: "pubkey";
|
|
14318
|
+
"name": "socialClaimAuthority";
|
|
14319
|
+
"type": "pubkey";
|
|
14220
14320
|
},
|
|
14221
14321
|
{
|
|
14222
|
-
name: "disableFlags";
|
|
14223
|
-
type: "u8";
|
|
14322
|
+
"name": "disableFlags";
|
|
14323
|
+
"type": "u8";
|
|
14224
14324
|
},
|
|
14225
14325
|
{
|
|
14226
|
-
name: "claimRateLimit";
|
|
14227
|
-
type: "u64";
|
|
14326
|
+
"name": "claimRateLimit";
|
|
14327
|
+
"type": "u64";
|
|
14228
14328
|
}
|
|
14229
14329
|
];
|
|
14230
14330
|
},
|
|
14231
14331
|
{
|
|
14232
|
-
name: "resetFeeSharingConfig";
|
|
14233
|
-
docs: [
|
|
14234
|
-
"Reset Fee Sharing Config
|
|
14332
|
+
"name": "resetFeeSharingConfig";
|
|
14333
|
+
"docs": [
|
|
14334
|
+
"Reset Fee Sharing Config and distribute pending fees first"
|
|
14235
14335
|
];
|
|
14236
|
-
discriminator: [
|
|
14237
|
-
|
|
14336
|
+
"discriminator": [
|
|
14337
|
+
10,
|
|
14338
|
+
2,
|
|
14339
|
+
182,
|
|
14340
|
+
95,
|
|
14341
|
+
16,
|
|
14342
|
+
127,
|
|
14343
|
+
129,
|
|
14344
|
+
186
|
|
14345
|
+
];
|
|
14346
|
+
"accounts": [
|
|
14238
14347
|
{
|
|
14239
|
-
name: "
|
|
14240
|
-
signer: true;
|
|
14348
|
+
"name": "newAdmin";
|
|
14241
14349
|
},
|
|
14242
14350
|
{
|
|
14243
|
-
name: "
|
|
14244
|
-
pda: {
|
|
14245
|
-
seeds: [
|
|
14351
|
+
"name": "eventAuthority";
|
|
14352
|
+
"pda": {
|
|
14353
|
+
"seeds": [
|
|
14246
14354
|
{
|
|
14247
|
-
kind: "const";
|
|
14248
|
-
value: [
|
|
14355
|
+
"kind": "const";
|
|
14356
|
+
"value": [
|
|
14357
|
+
95,
|
|
14358
|
+
95,
|
|
14359
|
+
101,
|
|
14360
|
+
118,
|
|
14361
|
+
101,
|
|
14362
|
+
110,
|
|
14363
|
+
116,
|
|
14364
|
+
95,
|
|
14365
|
+
97,
|
|
14366
|
+
117,
|
|
14367
|
+
116,
|
|
14368
|
+
104,
|
|
14369
|
+
111,
|
|
14370
|
+
114,
|
|
14371
|
+
105,
|
|
14372
|
+
116,
|
|
14373
|
+
121
|
|
14374
|
+
];
|
|
14249
14375
|
}
|
|
14250
14376
|
];
|
|
14251
|
-
|
|
14252
|
-
|
|
14253
|
-
|
|
14254
|
-
|
|
14255
|
-
|
|
14256
|
-
|
|
14257
|
-
|
|
14258
|
-
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14262
|
-
|
|
14263
|
-
|
|
14264
|
-
|
|
14265
|
-
|
|
14266
|
-
|
|
14377
|
+
};
|
|
14378
|
+
},
|
|
14379
|
+
{
|
|
14380
|
+
"name": "program";
|
|
14381
|
+
"address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
14382
|
+
},
|
|
14383
|
+
{
|
|
14384
|
+
"name": "authority";
|
|
14385
|
+
"signer": true;
|
|
14386
|
+
},
|
|
14387
|
+
{
|
|
14388
|
+
"name": "global";
|
|
14389
|
+
"pda": {
|
|
14390
|
+
"seeds": [
|
|
14391
|
+
{
|
|
14392
|
+
"kind": "const";
|
|
14393
|
+
"value": [
|
|
14394
|
+
103,
|
|
14395
|
+
108,
|
|
14396
|
+
111,
|
|
14397
|
+
98,
|
|
14398
|
+
97,
|
|
14399
|
+
108
|
|
14400
|
+
];
|
|
14401
|
+
}
|
|
14402
|
+
];
|
|
14403
|
+
"program": {
|
|
14404
|
+
"kind": "const";
|
|
14405
|
+
"value": [
|
|
14406
|
+
1,
|
|
14407
|
+
86,
|
|
14408
|
+
224,
|
|
14409
|
+
246,
|
|
14410
|
+
147,
|
|
14411
|
+
102,
|
|
14412
|
+
90,
|
|
14413
|
+
207,
|
|
14414
|
+
68,
|
|
14415
|
+
219,
|
|
14416
|
+
21,
|
|
14417
|
+
104,
|
|
14418
|
+
191,
|
|
14267
14419
|
23,
|
|
14268
14420
|
91,
|
|
14269
14421
|
170,
|
|
@@ -14288,20 +14440,19 @@ interface PumpFees {
|
|
|
14288
14440
|
};
|
|
14289
14441
|
},
|
|
14290
14442
|
{
|
|
14291
|
-
name: "
|
|
14292
|
-
|
|
14293
|
-
|
|
14294
|
-
|
|
14295
|
-
relations: ["sharingConfig"];
|
|
14443
|
+
"name": "mint";
|
|
14444
|
+
"relations": [
|
|
14445
|
+
"sharingConfig"
|
|
14446
|
+
];
|
|
14296
14447
|
},
|
|
14297
14448
|
{
|
|
14298
|
-
name: "sharingConfig";
|
|
14299
|
-
writable: true;
|
|
14300
|
-
pda: {
|
|
14301
|
-
seeds: [
|
|
14449
|
+
"name": "sharingConfig";
|
|
14450
|
+
"writable": true;
|
|
14451
|
+
"pda": {
|
|
14452
|
+
"seeds": [
|
|
14302
14453
|
{
|
|
14303
|
-
kind: "const";
|
|
14304
|
-
value: [
|
|
14454
|
+
"kind": "const";
|
|
14455
|
+
"value": [
|
|
14305
14456
|
115,
|
|
14306
14457
|
104,
|
|
14307
14458
|
97,
|
|
@@ -14319,68 +14470,42 @@ interface PumpFees {
|
|
|
14319
14470
|
];
|
|
14320
14471
|
},
|
|
14321
14472
|
{
|
|
14322
|
-
kind: "account";
|
|
14323
|
-
path: "mint";
|
|
14473
|
+
"kind": "account";
|
|
14474
|
+
"path": "mint";
|
|
14324
14475
|
}
|
|
14325
14476
|
];
|
|
14326
14477
|
};
|
|
14327
14478
|
},
|
|
14328
14479
|
{
|
|
14329
|
-
name: "
|
|
14330
|
-
pda: {
|
|
14331
|
-
seeds: [
|
|
14480
|
+
"name": "bondingCurve";
|
|
14481
|
+
"pda": {
|
|
14482
|
+
"seeds": [
|
|
14332
14483
|
{
|
|
14333
|
-
kind: "const";
|
|
14334
|
-
value: [
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
101,
|
|
14338
|
-
118,
|
|
14339
|
-
101,
|
|
14484
|
+
"kind": "const";
|
|
14485
|
+
"value": [
|
|
14486
|
+
98,
|
|
14487
|
+
111,
|
|
14340
14488
|
110,
|
|
14341
|
-
|
|
14342
|
-
|
|
14343
|
-
|
|
14489
|
+
100,
|
|
14490
|
+
105,
|
|
14491
|
+
110,
|
|
14492
|
+
103,
|
|
14493
|
+
45,
|
|
14494
|
+
99,
|
|
14344
14495
|
117,
|
|
14345
|
-
116,
|
|
14346
|
-
104,
|
|
14347
|
-
111,
|
|
14348
14496
|
114,
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
121
|
|
14497
|
+
118,
|
|
14498
|
+
101
|
|
14352
14499
|
];
|
|
14353
|
-
}
|
|
14354
|
-
];
|
|
14355
|
-
};
|
|
14356
|
-
},
|
|
14357
|
-
{
|
|
14358
|
-
name: "program";
|
|
14359
|
-
}
|
|
14360
|
-
];
|
|
14361
|
-
args: [];
|
|
14362
|
-
},
|
|
14363
|
-
{
|
|
14364
|
-
name: "revokeFeeSharingAuthority";
|
|
14365
|
-
docs: ["Revoke Fee Sharing Authority"];
|
|
14366
|
-
discriminator: [18, 233, 158, 39, 185, 207, 58, 104];
|
|
14367
|
-
accounts: [
|
|
14368
|
-
{
|
|
14369
|
-
name: "authority";
|
|
14370
|
-
signer: true;
|
|
14371
|
-
},
|
|
14372
|
-
{
|
|
14373
|
-
name: "global";
|
|
14374
|
-
pda: {
|
|
14375
|
-
seeds: [
|
|
14500
|
+
},
|
|
14376
14501
|
{
|
|
14377
|
-
kind: "
|
|
14378
|
-
|
|
14502
|
+
"kind": "account";
|
|
14503
|
+
"path": "mint";
|
|
14379
14504
|
}
|
|
14380
14505
|
];
|
|
14381
|
-
program: {
|
|
14382
|
-
kind: "const";
|
|
14383
|
-
value: [
|
|
14506
|
+
"program": {
|
|
14507
|
+
"kind": "const";
|
|
14508
|
+
"value": [
|
|
14384
14509
|
1,
|
|
14385
14510
|
86,
|
|
14386
14511
|
224,
|
|
@@ -14418,47 +14543,87 @@ interface PumpFees {
|
|
|
14418
14543
|
};
|
|
14419
14544
|
},
|
|
14420
14545
|
{
|
|
14421
|
-
name: "
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14425
|
-
name: "sharingConfig";
|
|
14426
|
-
writable: true;
|
|
14427
|
-
pda: {
|
|
14428
|
-
seeds: [
|
|
14546
|
+
"name": "pumpCreatorVault";
|
|
14547
|
+
"writable": true;
|
|
14548
|
+
"pda": {
|
|
14549
|
+
"seeds": [
|
|
14429
14550
|
{
|
|
14430
|
-
kind: "const";
|
|
14431
|
-
value: [
|
|
14432
|
-
|
|
14433
|
-
|
|
14551
|
+
"kind": "const";
|
|
14552
|
+
"value": [
|
|
14553
|
+
99,
|
|
14554
|
+
114,
|
|
14555
|
+
101,
|
|
14434
14556
|
97,
|
|
14557
|
+
116,
|
|
14558
|
+
111,
|
|
14435
14559
|
114,
|
|
14436
|
-
105,
|
|
14437
|
-
110,
|
|
14438
|
-
103,
|
|
14439
14560
|
45,
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
103
|
|
14561
|
+
118,
|
|
14562
|
+
97,
|
|
14563
|
+
117,
|
|
14564
|
+
108,
|
|
14565
|
+
116
|
|
14446
14566
|
];
|
|
14447
14567
|
},
|
|
14448
14568
|
{
|
|
14449
|
-
kind: "account";
|
|
14450
|
-
path: "
|
|
14569
|
+
"kind": "account";
|
|
14570
|
+
"path": "sharingConfig";
|
|
14451
14571
|
}
|
|
14452
14572
|
];
|
|
14573
|
+
"program": {
|
|
14574
|
+
"kind": "const";
|
|
14575
|
+
"value": [
|
|
14576
|
+
1,
|
|
14577
|
+
86,
|
|
14578
|
+
224,
|
|
14579
|
+
246,
|
|
14580
|
+
147,
|
|
14581
|
+
102,
|
|
14582
|
+
90,
|
|
14583
|
+
207,
|
|
14584
|
+
68,
|
|
14585
|
+
219,
|
|
14586
|
+
21,
|
|
14587
|
+
104,
|
|
14588
|
+
191,
|
|
14589
|
+
23,
|
|
14590
|
+
91,
|
|
14591
|
+
170,
|
|
14592
|
+
81,
|
|
14593
|
+
137,
|
|
14594
|
+
203,
|
|
14595
|
+
151,
|
|
14596
|
+
245,
|
|
14597
|
+
210,
|
|
14598
|
+
255,
|
|
14599
|
+
59,
|
|
14600
|
+
101,
|
|
14601
|
+
93,
|
|
14602
|
+
43,
|
|
14603
|
+
182,
|
|
14604
|
+
253,
|
|
14605
|
+
109,
|
|
14606
|
+
24,
|
|
14607
|
+
176
|
|
14608
|
+
];
|
|
14609
|
+
};
|
|
14453
14610
|
};
|
|
14454
14611
|
},
|
|
14455
14612
|
{
|
|
14456
|
-
name: "
|
|
14457
|
-
|
|
14458
|
-
|
|
14613
|
+
"name": "systemProgram";
|
|
14614
|
+
"address": "11111111111111111111111111111111";
|
|
14615
|
+
},
|
|
14616
|
+
{
|
|
14617
|
+
"name": "pumpProgram";
|
|
14618
|
+
"address": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P";
|
|
14619
|
+
},
|
|
14620
|
+
{
|
|
14621
|
+
"name": "pumpEventAuthority";
|
|
14622
|
+
"pda": {
|
|
14623
|
+
"seeds": [
|
|
14459
14624
|
{
|
|
14460
|
-
kind: "const";
|
|
14461
|
-
value: [
|
|
14625
|
+
"kind": "const";
|
|
14626
|
+
"value": [
|
|
14462
14627
|
95,
|
|
14463
14628
|
95,
|
|
14464
14629
|
101,
|
|
@@ -14479,62 +14644,56 @@ interface PumpFees {
|
|
|
14479
14644
|
];
|
|
14480
14645
|
}
|
|
14481
14646
|
];
|
|
14647
|
+
"program": {
|
|
14648
|
+
"kind": "const";
|
|
14649
|
+
"value": [
|
|
14650
|
+
1,
|
|
14651
|
+
86,
|
|
14652
|
+
224,
|
|
14653
|
+
246,
|
|
14654
|
+
147,
|
|
14655
|
+
102,
|
|
14656
|
+
90,
|
|
14657
|
+
207,
|
|
14658
|
+
68,
|
|
14659
|
+
219,
|
|
14660
|
+
21,
|
|
14661
|
+
104,
|
|
14662
|
+
191,
|
|
14663
|
+
23,
|
|
14664
|
+
91,
|
|
14665
|
+
170,
|
|
14666
|
+
81,
|
|
14667
|
+
137,
|
|
14668
|
+
203,
|
|
14669
|
+
151,
|
|
14670
|
+
245,
|
|
14671
|
+
210,
|
|
14672
|
+
255,
|
|
14673
|
+
59,
|
|
14674
|
+
101,
|
|
14675
|
+
93,
|
|
14676
|
+
43,
|
|
14677
|
+
182,
|
|
14678
|
+
253,
|
|
14679
|
+
109,
|
|
14680
|
+
24,
|
|
14681
|
+
176
|
|
14682
|
+
];
|
|
14683
|
+
};
|
|
14482
14684
|
};
|
|
14483
14685
|
},
|
|
14484
14686
|
{
|
|
14485
|
-
name: "
|
|
14486
|
-
|
|
14487
|
-
];
|
|
14488
|
-
args: [];
|
|
14489
|
-
},
|
|
14490
|
-
{
|
|
14491
|
-
name: "setAuthority";
|
|
14492
|
-
discriminator: [133, 250, 37, 21, 110, 163, 26, 121];
|
|
14493
|
-
accounts: [
|
|
14494
|
-
{
|
|
14495
|
-
name: "authority";
|
|
14496
|
-
writable: true;
|
|
14497
|
-
signer: true;
|
|
14498
|
-
relations: ["feeProgramGlobal"];
|
|
14687
|
+
"name": "pumpAmmProgram";
|
|
14688
|
+
"address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA";
|
|
14499
14689
|
},
|
|
14500
14690
|
{
|
|
14501
|
-
name: "
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
seeds: [
|
|
14691
|
+
"name": "ammEventAuthority";
|
|
14692
|
+
"pda": {
|
|
14693
|
+
"seeds": [
|
|
14505
14694
|
{
|
|
14506
|
-
kind: "const";
|
|
14507
|
-
value: [
|
|
14508
|
-
102,
|
|
14509
|
-
101,
|
|
14510
|
-
101,
|
|
14511
|
-
45,
|
|
14512
|
-
112,
|
|
14513
|
-
114,
|
|
14514
|
-
111,
|
|
14515
|
-
103,
|
|
14516
|
-
114,
|
|
14517
|
-
97,
|
|
14518
|
-
109,
|
|
14519
|
-
45,
|
|
14520
|
-
103,
|
|
14521
|
-
108,
|
|
14522
|
-
111,
|
|
14523
|
-
98,
|
|
14524
|
-
97,
|
|
14525
|
-
108
|
|
14526
|
-
];
|
|
14527
|
-
}
|
|
14528
|
-
];
|
|
14529
|
-
};
|
|
14530
|
-
},
|
|
14531
|
-
{
|
|
14532
|
-
name: "eventAuthority";
|
|
14533
|
-
pda: {
|
|
14534
|
-
seeds: [
|
|
14535
|
-
{
|
|
14536
|
-
kind: "const";
|
|
14537
|
-
value: [
|
|
14695
|
+
"kind": "const";
|
|
14696
|
+
"value": [
|
|
14538
14697
|
95,
|
|
14539
14698
|
95,
|
|
14540
14699
|
101,
|
|
@@ -14555,37 +14714,178 @@ interface PumpFees {
|
|
|
14555
14714
|
];
|
|
14556
14715
|
}
|
|
14557
14716
|
];
|
|
14717
|
+
"program": {
|
|
14718
|
+
"kind": "const";
|
|
14719
|
+
"value": [
|
|
14720
|
+
12,
|
|
14721
|
+
20,
|
|
14722
|
+
222,
|
|
14723
|
+
252,
|
|
14724
|
+
130,
|
|
14725
|
+
94,
|
|
14726
|
+
198,
|
|
14727
|
+
118,
|
|
14728
|
+
148,
|
|
14729
|
+
37,
|
|
14730
|
+
8,
|
|
14731
|
+
24,
|
|
14732
|
+
187,
|
|
14733
|
+
101,
|
|
14734
|
+
64,
|
|
14735
|
+
101,
|
|
14736
|
+
244,
|
|
14737
|
+
41,
|
|
14738
|
+
141,
|
|
14739
|
+
49,
|
|
14740
|
+
86,
|
|
14741
|
+
213,
|
|
14742
|
+
113,
|
|
14743
|
+
180,
|
|
14744
|
+
212,
|
|
14745
|
+
248,
|
|
14746
|
+
9,
|
|
14747
|
+
12,
|
|
14748
|
+
24,
|
|
14749
|
+
233,
|
|
14750
|
+
168,
|
|
14751
|
+
99
|
|
14752
|
+
];
|
|
14753
|
+
};
|
|
14558
14754
|
};
|
|
14559
14755
|
},
|
|
14560
14756
|
{
|
|
14561
|
-
name: "
|
|
14562
|
-
|
|
14563
|
-
|
|
14564
|
-
args: [
|
|
14757
|
+
"name": "wsolMint";
|
|
14758
|
+
"address": "So11111111111111111111111111111111111111112";
|
|
14759
|
+
},
|
|
14565
14760
|
{
|
|
14566
|
-
name: "
|
|
14567
|
-
|
|
14761
|
+
"name": "tokenProgram";
|
|
14762
|
+
"address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
|
|
14763
|
+
},
|
|
14764
|
+
{
|
|
14765
|
+
"name": "associatedTokenProgram";
|
|
14766
|
+
"address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
|
|
14767
|
+
},
|
|
14768
|
+
{
|
|
14769
|
+
"name": "coinCreatorVaultAuthority";
|
|
14770
|
+
"writable": true;
|
|
14771
|
+
"pda": {
|
|
14772
|
+
"seeds": [
|
|
14773
|
+
{
|
|
14774
|
+
"kind": "const";
|
|
14775
|
+
"value": [
|
|
14776
|
+
99,
|
|
14777
|
+
114,
|
|
14778
|
+
101,
|
|
14779
|
+
97,
|
|
14780
|
+
116,
|
|
14781
|
+
111,
|
|
14782
|
+
114,
|
|
14783
|
+
95,
|
|
14784
|
+
118,
|
|
14785
|
+
97,
|
|
14786
|
+
117,
|
|
14787
|
+
108,
|
|
14788
|
+
116
|
|
14789
|
+
];
|
|
14790
|
+
},
|
|
14791
|
+
{
|
|
14792
|
+
"kind": "account";
|
|
14793
|
+
"path": "sharingConfig";
|
|
14794
|
+
}
|
|
14795
|
+
];
|
|
14796
|
+
"program": {
|
|
14797
|
+
"kind": "const";
|
|
14798
|
+
"value": [
|
|
14799
|
+
12,
|
|
14800
|
+
20,
|
|
14801
|
+
222,
|
|
14802
|
+
252,
|
|
14803
|
+
130,
|
|
14804
|
+
94,
|
|
14805
|
+
198,
|
|
14806
|
+
118,
|
|
14807
|
+
148,
|
|
14808
|
+
37,
|
|
14809
|
+
8,
|
|
14810
|
+
24,
|
|
14811
|
+
187,
|
|
14812
|
+
101,
|
|
14813
|
+
64,
|
|
14814
|
+
101,
|
|
14815
|
+
244,
|
|
14816
|
+
41,
|
|
14817
|
+
141,
|
|
14818
|
+
49,
|
|
14819
|
+
86,
|
|
14820
|
+
213,
|
|
14821
|
+
113,
|
|
14822
|
+
180,
|
|
14823
|
+
212,
|
|
14824
|
+
248,
|
|
14825
|
+
9,
|
|
14826
|
+
12,
|
|
14827
|
+
24,
|
|
14828
|
+
233,
|
|
14829
|
+
168,
|
|
14830
|
+
99
|
|
14831
|
+
];
|
|
14832
|
+
};
|
|
14833
|
+
};
|
|
14834
|
+
},
|
|
14835
|
+
{
|
|
14836
|
+
"name": "coinCreatorVaultAta";
|
|
14837
|
+
"writable": true;
|
|
14568
14838
|
}
|
|
14569
14839
|
];
|
|
14840
|
+
"args": [];
|
|
14570
14841
|
},
|
|
14571
14842
|
{
|
|
14572
|
-
name: "
|
|
14573
|
-
|
|
14574
|
-
|
|
14843
|
+
"name": "revokeFeeSharingAuthority";
|
|
14844
|
+
"docs": [
|
|
14845
|
+
"Revoke Fee Sharing Authority"
|
|
14846
|
+
];
|
|
14847
|
+
"discriminator": [
|
|
14848
|
+
18,
|
|
14849
|
+
233,
|
|
14850
|
+
158,
|
|
14851
|
+
39,
|
|
14852
|
+
185,
|
|
14853
|
+
207,
|
|
14854
|
+
58,
|
|
14855
|
+
104
|
|
14856
|
+
];
|
|
14857
|
+
"accounts": [];
|
|
14858
|
+
"args": [];
|
|
14859
|
+
},
|
|
14860
|
+
{
|
|
14861
|
+
"name": "setAuthority";
|
|
14862
|
+
"discriminator": [
|
|
14863
|
+
133,
|
|
14864
|
+
250,
|
|
14865
|
+
37,
|
|
14866
|
+
21,
|
|
14867
|
+
110,
|
|
14868
|
+
163,
|
|
14869
|
+
26,
|
|
14870
|
+
121
|
|
14871
|
+
];
|
|
14872
|
+
"accounts": [
|
|
14575
14873
|
{
|
|
14576
|
-
name: "authority";
|
|
14577
|
-
writable: true;
|
|
14578
|
-
signer: true;
|
|
14579
|
-
relations: [
|
|
14874
|
+
"name": "authority";
|
|
14875
|
+
"writable": true;
|
|
14876
|
+
"signer": true;
|
|
14877
|
+
"relations": [
|
|
14878
|
+
"feeProgramGlobal"
|
|
14879
|
+
];
|
|
14580
14880
|
},
|
|
14581
14881
|
{
|
|
14582
|
-
name: "feeProgramGlobal";
|
|
14583
|
-
writable: true;
|
|
14584
|
-
pda: {
|
|
14585
|
-
seeds: [
|
|
14882
|
+
"name": "feeProgramGlobal";
|
|
14883
|
+
"writable": true;
|
|
14884
|
+
"pda": {
|
|
14885
|
+
"seeds": [
|
|
14586
14886
|
{
|
|
14587
|
-
kind: "const";
|
|
14588
|
-
value: [
|
|
14887
|
+
"kind": "const";
|
|
14888
|
+
"value": [
|
|
14589
14889
|
102,
|
|
14590
14890
|
101,
|
|
14591
14891
|
101,
|
|
@@ -14610,12 +14910,12 @@ interface PumpFees {
|
|
|
14610
14910
|
};
|
|
14611
14911
|
},
|
|
14612
14912
|
{
|
|
14613
|
-
name: "eventAuthority";
|
|
14614
|
-
pda: {
|
|
14615
|
-
seeds: [
|
|
14913
|
+
"name": "eventAuthority";
|
|
14914
|
+
"pda": {
|
|
14915
|
+
"seeds": [
|
|
14616
14916
|
{
|
|
14617
|
-
kind: "const";
|
|
14618
|
-
value: [
|
|
14917
|
+
"kind": "const";
|
|
14918
|
+
"value": [
|
|
14619
14919
|
95,
|
|
14620
14920
|
95,
|
|
14621
14921
|
101,
|
|
@@ -14639,34 +14939,45 @@ interface PumpFees {
|
|
|
14639
14939
|
};
|
|
14640
14940
|
},
|
|
14641
14941
|
{
|
|
14642
|
-
name: "program";
|
|
14942
|
+
"name": "program";
|
|
14643
14943
|
}
|
|
14644
14944
|
];
|
|
14645
|
-
args: [
|
|
14945
|
+
"args": [
|
|
14646
14946
|
{
|
|
14647
|
-
name: "
|
|
14648
|
-
type: "
|
|
14947
|
+
"name": "newAuthority";
|
|
14948
|
+
"type": "pubkey";
|
|
14649
14949
|
}
|
|
14650
14950
|
];
|
|
14651
14951
|
},
|
|
14652
14952
|
{
|
|
14653
|
-
name: "
|
|
14654
|
-
discriminator: [
|
|
14655
|
-
|
|
14953
|
+
"name": "setClaimRateLimit";
|
|
14954
|
+
"discriminator": [
|
|
14955
|
+
185,
|
|
14956
|
+
211,
|
|
14957
|
+
159,
|
|
14958
|
+
174,
|
|
14959
|
+
212,
|
|
14960
|
+
49,
|
|
14961
|
+
88,
|
|
14962
|
+
4
|
|
14963
|
+
];
|
|
14964
|
+
"accounts": [
|
|
14656
14965
|
{
|
|
14657
|
-
name: "authority";
|
|
14658
|
-
writable: true;
|
|
14659
|
-
signer: true;
|
|
14660
|
-
relations: [
|
|
14966
|
+
"name": "authority";
|
|
14967
|
+
"writable": true;
|
|
14968
|
+
"signer": true;
|
|
14969
|
+
"relations": [
|
|
14970
|
+
"feeProgramGlobal"
|
|
14971
|
+
];
|
|
14661
14972
|
},
|
|
14662
14973
|
{
|
|
14663
|
-
name: "feeProgramGlobal";
|
|
14664
|
-
writable: true;
|
|
14665
|
-
pda: {
|
|
14666
|
-
seeds: [
|
|
14974
|
+
"name": "feeProgramGlobal";
|
|
14975
|
+
"writable": true;
|
|
14976
|
+
"pda": {
|
|
14977
|
+
"seeds": [
|
|
14667
14978
|
{
|
|
14668
|
-
kind: "const";
|
|
14669
|
-
value: [
|
|
14979
|
+
"kind": "const";
|
|
14980
|
+
"value": [
|
|
14670
14981
|
102,
|
|
14671
14982
|
101,
|
|
14672
14983
|
101,
|
|
@@ -14691,12 +15002,12 @@ interface PumpFees {
|
|
|
14691
15002
|
};
|
|
14692
15003
|
},
|
|
14693
15004
|
{
|
|
14694
|
-
name: "eventAuthority";
|
|
14695
|
-
pda: {
|
|
14696
|
-
seeds: [
|
|
15005
|
+
"name": "eventAuthority";
|
|
15006
|
+
"pda": {
|
|
15007
|
+
"seeds": [
|
|
14697
15008
|
{
|
|
14698
|
-
kind: "const";
|
|
14699
|
-
value: [
|
|
15009
|
+
"kind": "const";
|
|
15010
|
+
"value": [
|
|
14700
15011
|
95,
|
|
14701
15012
|
95,
|
|
14702
15013
|
101,
|
|
@@ -14720,34 +15031,45 @@ interface PumpFees {
|
|
|
14720
15031
|
};
|
|
14721
15032
|
},
|
|
14722
15033
|
{
|
|
14723
|
-
name: "program";
|
|
15034
|
+
"name": "program";
|
|
14724
15035
|
}
|
|
14725
15036
|
];
|
|
14726
|
-
args: [
|
|
15037
|
+
"args": [
|
|
14727
15038
|
{
|
|
14728
|
-
name: "
|
|
14729
|
-
type: "
|
|
15039
|
+
"name": "claimRateLimit";
|
|
15040
|
+
"type": "u64";
|
|
14730
15041
|
}
|
|
14731
15042
|
];
|
|
14732
15043
|
},
|
|
14733
15044
|
{
|
|
14734
|
-
name: "
|
|
14735
|
-
discriminator: [
|
|
14736
|
-
|
|
15045
|
+
"name": "setDisableFlags";
|
|
15046
|
+
"discriminator": [
|
|
15047
|
+
194,
|
|
15048
|
+
217,
|
|
15049
|
+
112,
|
|
15050
|
+
35,
|
|
15051
|
+
114,
|
|
15052
|
+
222,
|
|
15053
|
+
51,
|
|
15054
|
+
190
|
|
15055
|
+
];
|
|
15056
|
+
"accounts": [
|
|
14737
15057
|
{
|
|
14738
|
-
name: "authority";
|
|
14739
|
-
writable: true;
|
|
14740
|
-
signer: true;
|
|
14741
|
-
relations: [
|
|
15058
|
+
"name": "authority";
|
|
15059
|
+
"writable": true;
|
|
15060
|
+
"signer": true;
|
|
15061
|
+
"relations": [
|
|
15062
|
+
"feeProgramGlobal"
|
|
15063
|
+
];
|
|
14742
15064
|
},
|
|
14743
15065
|
{
|
|
14744
|
-
name: "feeProgramGlobal";
|
|
14745
|
-
writable: true;
|
|
14746
|
-
pda: {
|
|
14747
|
-
seeds: [
|
|
15066
|
+
"name": "feeProgramGlobal";
|
|
15067
|
+
"writable": true;
|
|
15068
|
+
"pda": {
|
|
15069
|
+
"seeds": [
|
|
14748
15070
|
{
|
|
14749
|
-
kind: "const";
|
|
14750
|
-
value: [
|
|
15071
|
+
"kind": "const";
|
|
15072
|
+
"value": [
|
|
14751
15073
|
102,
|
|
14752
15074
|
101,
|
|
14753
15075
|
101,
|
|
@@ -14772,12 +15094,12 @@ interface PumpFees {
|
|
|
14772
15094
|
};
|
|
14773
15095
|
},
|
|
14774
15096
|
{
|
|
14775
|
-
name: "eventAuthority";
|
|
14776
|
-
pda: {
|
|
14777
|
-
seeds: [
|
|
15097
|
+
"name": "eventAuthority";
|
|
15098
|
+
"pda": {
|
|
15099
|
+
"seeds": [
|
|
14778
15100
|
{
|
|
14779
|
-
kind: "const";
|
|
14780
|
-
value: [
|
|
15101
|
+
"kind": "const";
|
|
15102
|
+
"value": [
|
|
14781
15103
|
95,
|
|
14782
15104
|
95,
|
|
14783
15105
|
101,
|
|
@@ -14801,118 +15123,75 @@ interface PumpFees {
|
|
|
14801
15123
|
};
|
|
14802
15124
|
},
|
|
14803
15125
|
{
|
|
14804
|
-
name: "program";
|
|
15126
|
+
"name": "program";
|
|
14805
15127
|
}
|
|
14806
15128
|
];
|
|
14807
|
-
args: [
|
|
15129
|
+
"args": [
|
|
14808
15130
|
{
|
|
14809
|
-
name: "
|
|
14810
|
-
type: "
|
|
15131
|
+
"name": "disableFlags";
|
|
15132
|
+
"type": "u8";
|
|
14811
15133
|
}
|
|
14812
15134
|
];
|
|
14813
15135
|
},
|
|
14814
15136
|
{
|
|
14815
|
-
name: "
|
|
14816
|
-
|
|
14817
|
-
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
-
|
|
14824
|
-
|
|
14825
|
-
|
|
14826
|
-
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
|
|
14832
|
-
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
14836
|
-
|
|
14837
|
-
|
|
14838
|
-
|
|
14839
|
-
|
|
14840
|
-
102,
|
|
14841
|
-
90,
|
|
14842
|
-
207,
|
|
14843
|
-
68,
|
|
14844
|
-
219,
|
|
14845
|
-
21,
|
|
14846
|
-
104,
|
|
14847
|
-
191,
|
|
14848
|
-
23,
|
|
14849
|
-
91,
|
|
14850
|
-
170,
|
|
14851
|
-
81,
|
|
14852
|
-
137,
|
|
14853
|
-
203,
|
|
14854
|
-
151,
|
|
14855
|
-
245,
|
|
14856
|
-
210,
|
|
14857
|
-
255,
|
|
14858
|
-
59,
|
|
14859
|
-
101,
|
|
14860
|
-
93,
|
|
14861
|
-
43,
|
|
14862
|
-
182,
|
|
14863
|
-
253,
|
|
14864
|
-
109,
|
|
14865
|
-
24,
|
|
14866
|
-
176
|
|
14867
|
-
];
|
|
14868
|
-
};
|
|
14869
|
-
};
|
|
14870
|
-
},
|
|
14871
|
-
{
|
|
14872
|
-
name: "mint";
|
|
14873
|
-
relations: ["sharingConfig"];
|
|
14874
|
-
},
|
|
14875
|
-
{
|
|
14876
|
-
name: "sharingConfig";
|
|
14877
|
-
writable: true;
|
|
14878
|
-
pda: {
|
|
14879
|
-
seeds: [
|
|
15137
|
+
"name": "setSocialClaimAuthority";
|
|
15138
|
+
"discriminator": [
|
|
15139
|
+
147,
|
|
15140
|
+
54,
|
|
15141
|
+
184,
|
|
15142
|
+
154,
|
|
15143
|
+
136,
|
|
15144
|
+
237,
|
|
15145
|
+
185,
|
|
15146
|
+
153
|
|
15147
|
+
];
|
|
15148
|
+
"accounts": [
|
|
15149
|
+
{
|
|
15150
|
+
"name": "authority";
|
|
15151
|
+
"writable": true;
|
|
15152
|
+
"signer": true;
|
|
15153
|
+
"relations": [
|
|
15154
|
+
"feeProgramGlobal"
|
|
15155
|
+
];
|
|
15156
|
+
},
|
|
15157
|
+
{
|
|
15158
|
+
"name": "feeProgramGlobal";
|
|
15159
|
+
"writable": true;
|
|
15160
|
+
"pda": {
|
|
15161
|
+
"seeds": [
|
|
14880
15162
|
{
|
|
14881
|
-
kind: "const";
|
|
14882
|
-
value: [
|
|
14883
|
-
|
|
14884
|
-
|
|
14885
|
-
|
|
15163
|
+
"kind": "const";
|
|
15164
|
+
"value": [
|
|
15165
|
+
102,
|
|
15166
|
+
101,
|
|
15167
|
+
101,
|
|
15168
|
+
45,
|
|
15169
|
+
112,
|
|
14886
15170
|
114,
|
|
14887
|
-
|
|
14888
|
-
110,
|
|
15171
|
+
111,
|
|
14889
15172
|
103,
|
|
15173
|
+
114,
|
|
15174
|
+
97,
|
|
15175
|
+
109,
|
|
14890
15176
|
45,
|
|
14891
|
-
|
|
15177
|
+
103,
|
|
15178
|
+
108,
|
|
14892
15179
|
111,
|
|
14893
|
-
|
|
14894
|
-
|
|
14895
|
-
|
|
14896
|
-
103
|
|
15180
|
+
98,
|
|
15181
|
+
97,
|
|
15182
|
+
108
|
|
14897
15183
|
];
|
|
14898
|
-
},
|
|
14899
|
-
{
|
|
14900
|
-
kind: "account";
|
|
14901
|
-
path: "mint";
|
|
14902
15184
|
}
|
|
14903
15185
|
];
|
|
14904
15186
|
};
|
|
14905
15187
|
},
|
|
14906
15188
|
{
|
|
14907
|
-
name: "
|
|
14908
|
-
|
|
14909
|
-
|
|
14910
|
-
name: "eventAuthority";
|
|
14911
|
-
pda: {
|
|
14912
|
-
seeds: [
|
|
15189
|
+
"name": "eventAuthority";
|
|
15190
|
+
"pda": {
|
|
15191
|
+
"seeds": [
|
|
14913
15192
|
{
|
|
14914
|
-
kind: "const";
|
|
14915
|
-
value: [
|
|
15193
|
+
"kind": "const";
|
|
15194
|
+
"value": [
|
|
14916
15195
|
95,
|
|
14917
15196
|
95,
|
|
14918
15197
|
101,
|
|
@@ -14936,50 +15215,97 @@ interface PumpFees {
|
|
|
14936
15215
|
};
|
|
14937
15216
|
},
|
|
14938
15217
|
{
|
|
14939
|
-
name: "program";
|
|
15218
|
+
"name": "program";
|
|
15219
|
+
}
|
|
15220
|
+
];
|
|
15221
|
+
"args": [
|
|
15222
|
+
{
|
|
15223
|
+
"name": "socialClaimAuthority";
|
|
15224
|
+
"type": "pubkey";
|
|
14940
15225
|
}
|
|
14941
15226
|
];
|
|
14942
|
-
args: [];
|
|
14943
15227
|
},
|
|
14944
15228
|
{
|
|
14945
|
-
name: "
|
|
14946
|
-
docs: [
|
|
14947
|
-
|
|
14948
|
-
|
|
15229
|
+
"name": "transferFeeSharingAuthority";
|
|
15230
|
+
"docs": [
|
|
15231
|
+
"Transfer Fee Sharing Authority"
|
|
15232
|
+
];
|
|
15233
|
+
"discriminator": [
|
|
15234
|
+
202,
|
|
15235
|
+
10,
|
|
15236
|
+
75,
|
|
15237
|
+
200,
|
|
15238
|
+
164,
|
|
15239
|
+
34,
|
|
15240
|
+
210,
|
|
15241
|
+
96
|
|
15242
|
+
];
|
|
15243
|
+
"accounts": [];
|
|
15244
|
+
"args": [];
|
|
15245
|
+
},
|
|
15246
|
+
{
|
|
15247
|
+
"name": "updateAdmin";
|
|
15248
|
+
"docs": [
|
|
15249
|
+
"Update admin (only callable by admin)"
|
|
15250
|
+
];
|
|
15251
|
+
"discriminator": [
|
|
15252
|
+
161,
|
|
15253
|
+
176,
|
|
15254
|
+
40,
|
|
15255
|
+
213,
|
|
15256
|
+
60,
|
|
15257
|
+
184,
|
|
15258
|
+
179,
|
|
15259
|
+
228
|
|
15260
|
+
];
|
|
15261
|
+
"accounts": [
|
|
14949
15262
|
{
|
|
14950
|
-
name: "admin";
|
|
14951
|
-
signer: true;
|
|
14952
|
-
relations: [
|
|
15263
|
+
"name": "admin";
|
|
15264
|
+
"signer": true;
|
|
15265
|
+
"relations": [
|
|
15266
|
+
"feeConfig"
|
|
15267
|
+
];
|
|
14953
15268
|
},
|
|
14954
15269
|
{
|
|
14955
|
-
name: "feeConfig";
|
|
14956
|
-
writable: true;
|
|
14957
|
-
pda: {
|
|
14958
|
-
seeds: [
|
|
15270
|
+
"name": "feeConfig";
|
|
15271
|
+
"writable": true;
|
|
15272
|
+
"pda": {
|
|
15273
|
+
"seeds": [
|
|
14959
15274
|
{
|
|
14960
|
-
kind: "const";
|
|
14961
|
-
value: [
|
|
15275
|
+
"kind": "const";
|
|
15276
|
+
"value": [
|
|
15277
|
+
102,
|
|
15278
|
+
101,
|
|
15279
|
+
101,
|
|
15280
|
+
95,
|
|
15281
|
+
99,
|
|
15282
|
+
111,
|
|
15283
|
+
110,
|
|
15284
|
+
102,
|
|
15285
|
+
105,
|
|
15286
|
+
103
|
|
15287
|
+
];
|
|
14962
15288
|
},
|
|
14963
15289
|
{
|
|
14964
|
-
kind: "account";
|
|
14965
|
-
path: "configProgramId";
|
|
15290
|
+
"kind": "account";
|
|
15291
|
+
"path": "configProgramId";
|
|
14966
15292
|
}
|
|
14967
15293
|
];
|
|
14968
15294
|
};
|
|
14969
15295
|
},
|
|
14970
15296
|
{
|
|
14971
|
-
name: "newAdmin";
|
|
15297
|
+
"name": "newAdmin";
|
|
14972
15298
|
},
|
|
14973
15299
|
{
|
|
14974
|
-
name: "configProgramId";
|
|
15300
|
+
"name": "configProgramId";
|
|
14975
15301
|
},
|
|
14976
15302
|
{
|
|
14977
|
-
name: "eventAuthority";
|
|
14978
|
-
pda: {
|
|
14979
|
-
seeds: [
|
|
15303
|
+
"name": "eventAuthority";
|
|
15304
|
+
"pda": {
|
|
15305
|
+
"seeds": [
|
|
14980
15306
|
{
|
|
14981
|
-
kind: "const";
|
|
14982
|
-
value: [
|
|
15307
|
+
"kind": "const";
|
|
15308
|
+
"value": [
|
|
14983
15309
|
95,
|
|
14984
15310
|
95,
|
|
14985
15311
|
101,
|
|
@@ -15003,47 +15329,71 @@ interface PumpFees {
|
|
|
15003
15329
|
};
|
|
15004
15330
|
},
|
|
15005
15331
|
{
|
|
15006
|
-
name: "program";
|
|
15332
|
+
"name": "program";
|
|
15007
15333
|
}
|
|
15008
15334
|
];
|
|
15009
|
-
args: [];
|
|
15335
|
+
"args": [];
|
|
15010
15336
|
},
|
|
15011
15337
|
{
|
|
15012
|
-
name: "updateFeeConfig";
|
|
15013
|
-
docs: [
|
|
15014
|
-
|
|
15015
|
-
|
|
15338
|
+
"name": "updateFeeConfig";
|
|
15339
|
+
"docs": [
|
|
15340
|
+
"Set/Replace fee parameters entirely (only callable by admin)"
|
|
15341
|
+
];
|
|
15342
|
+
"discriminator": [
|
|
15343
|
+
104,
|
|
15344
|
+
184,
|
|
15345
|
+
103,
|
|
15346
|
+
242,
|
|
15347
|
+
88,
|
|
15348
|
+
151,
|
|
15349
|
+
107,
|
|
15350
|
+
20
|
|
15351
|
+
];
|
|
15352
|
+
"accounts": [
|
|
15016
15353
|
{
|
|
15017
|
-
name: "feeConfig";
|
|
15018
|
-
writable: true;
|
|
15019
|
-
pda: {
|
|
15020
|
-
seeds: [
|
|
15354
|
+
"name": "feeConfig";
|
|
15355
|
+
"writable": true;
|
|
15356
|
+
"pda": {
|
|
15357
|
+
"seeds": [
|
|
15021
15358
|
{
|
|
15022
|
-
kind: "const";
|
|
15023
|
-
value: [
|
|
15359
|
+
"kind": "const";
|
|
15360
|
+
"value": [
|
|
15361
|
+
102,
|
|
15362
|
+
101,
|
|
15363
|
+
101,
|
|
15364
|
+
95,
|
|
15365
|
+
99,
|
|
15366
|
+
111,
|
|
15367
|
+
110,
|
|
15368
|
+
102,
|
|
15369
|
+
105,
|
|
15370
|
+
103
|
|
15371
|
+
];
|
|
15024
15372
|
},
|
|
15025
15373
|
{
|
|
15026
|
-
kind: "account";
|
|
15027
|
-
path: "configProgramId";
|
|
15374
|
+
"kind": "account";
|
|
15375
|
+
"path": "configProgramId";
|
|
15028
15376
|
}
|
|
15029
15377
|
];
|
|
15030
15378
|
};
|
|
15031
15379
|
},
|
|
15032
15380
|
{
|
|
15033
|
-
name: "admin";
|
|
15034
|
-
signer: true;
|
|
15035
|
-
relations: [
|
|
15381
|
+
"name": "admin";
|
|
15382
|
+
"signer": true;
|
|
15383
|
+
"relations": [
|
|
15384
|
+
"feeConfig"
|
|
15385
|
+
];
|
|
15036
15386
|
},
|
|
15037
15387
|
{
|
|
15038
|
-
name: "configProgramId";
|
|
15388
|
+
"name": "configProgramId";
|
|
15039
15389
|
},
|
|
15040
15390
|
{
|
|
15041
|
-
name: "eventAuthority";
|
|
15042
|
-
pda: {
|
|
15043
|
-
seeds: [
|
|
15391
|
+
"name": "eventAuthority";
|
|
15392
|
+
"pda": {
|
|
15393
|
+
"seeds": [
|
|
15044
15394
|
{
|
|
15045
|
-
kind: "const";
|
|
15046
|
-
value: [
|
|
15395
|
+
"kind": "const";
|
|
15396
|
+
"value": [
|
|
15047
15397
|
95,
|
|
15048
15398
|
95,
|
|
15049
15399
|
101,
|
|
@@ -15067,44 +15417,53 @@ interface PumpFees {
|
|
|
15067
15417
|
};
|
|
15068
15418
|
},
|
|
15069
15419
|
{
|
|
15070
|
-
name: "program";
|
|
15420
|
+
"name": "program";
|
|
15071
15421
|
}
|
|
15072
15422
|
];
|
|
15073
|
-
args: [
|
|
15423
|
+
"args": [
|
|
15074
15424
|
{
|
|
15075
|
-
name: "feeTiers";
|
|
15076
|
-
type: {
|
|
15077
|
-
vec: {
|
|
15078
|
-
defined: {
|
|
15079
|
-
name: "feeTier";
|
|
15425
|
+
"name": "feeTiers";
|
|
15426
|
+
"type": {
|
|
15427
|
+
"vec": {
|
|
15428
|
+
"defined": {
|
|
15429
|
+
"name": "feeTier";
|
|
15080
15430
|
};
|
|
15081
15431
|
};
|
|
15082
15432
|
};
|
|
15083
15433
|
},
|
|
15084
15434
|
{
|
|
15085
|
-
name: "flatFees";
|
|
15086
|
-
type: {
|
|
15087
|
-
defined: {
|
|
15088
|
-
name: "fees";
|
|
15435
|
+
"name": "flatFees";
|
|
15436
|
+
"type": {
|
|
15437
|
+
"defined": {
|
|
15438
|
+
"name": "fees";
|
|
15089
15439
|
};
|
|
15090
15440
|
};
|
|
15091
15441
|
}
|
|
15092
15442
|
];
|
|
15093
15443
|
},
|
|
15094
15444
|
{
|
|
15095
|
-
name: "updateFeeShares";
|
|
15096
|
-
docs: [
|
|
15445
|
+
"name": "updateFeeShares";
|
|
15446
|
+
"docs": [
|
|
15097
15447
|
"Update Fee Shares, make sure to distribute all the fees before calling this"
|
|
15098
15448
|
];
|
|
15099
|
-
discriminator: [
|
|
15100
|
-
|
|
15449
|
+
"discriminator": [
|
|
15450
|
+
189,
|
|
15451
|
+
13,
|
|
15452
|
+
136,
|
|
15453
|
+
99,
|
|
15454
|
+
187,
|
|
15455
|
+
164,
|
|
15456
|
+
237,
|
|
15457
|
+
35
|
|
15458
|
+
];
|
|
15459
|
+
"accounts": [
|
|
15101
15460
|
{
|
|
15102
|
-
name: "eventAuthority";
|
|
15103
|
-
pda: {
|
|
15104
|
-
seeds: [
|
|
15461
|
+
"name": "eventAuthority";
|
|
15462
|
+
"pda": {
|
|
15463
|
+
"seeds": [
|
|
15105
15464
|
{
|
|
15106
|
-
kind: "const";
|
|
15107
|
-
value: [
|
|
15465
|
+
"kind": "const";
|
|
15466
|
+
"value": [
|
|
15108
15467
|
95,
|
|
15109
15468
|
95,
|
|
15110
15469
|
101,
|
|
@@ -15128,25 +15487,32 @@ interface PumpFees {
|
|
|
15128
15487
|
};
|
|
15129
15488
|
},
|
|
15130
15489
|
{
|
|
15131
|
-
name: "program";
|
|
15132
|
-
address: "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
15490
|
+
"name": "program";
|
|
15491
|
+
"address": "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ";
|
|
15133
15492
|
},
|
|
15134
15493
|
{
|
|
15135
|
-
name: "authority";
|
|
15136
|
-
signer: true;
|
|
15494
|
+
"name": "authority";
|
|
15495
|
+
"signer": true;
|
|
15137
15496
|
},
|
|
15138
15497
|
{
|
|
15139
|
-
name: "global";
|
|
15140
|
-
pda: {
|
|
15141
|
-
seeds: [
|
|
15498
|
+
"name": "global";
|
|
15499
|
+
"pda": {
|
|
15500
|
+
"seeds": [
|
|
15142
15501
|
{
|
|
15143
|
-
kind: "const";
|
|
15144
|
-
value: [
|
|
15502
|
+
"kind": "const";
|
|
15503
|
+
"value": [
|
|
15504
|
+
103,
|
|
15505
|
+
108,
|
|
15506
|
+
111,
|
|
15507
|
+
98,
|
|
15508
|
+
97,
|
|
15509
|
+
108
|
|
15510
|
+
];
|
|
15145
15511
|
}
|
|
15146
15512
|
];
|
|
15147
|
-
program: {
|
|
15148
|
-
kind: "const";
|
|
15149
|
-
value: [
|
|
15513
|
+
"program": {
|
|
15514
|
+
"kind": "const";
|
|
15515
|
+
"value": [
|
|
15150
15516
|
1,
|
|
15151
15517
|
86,
|
|
15152
15518
|
224,
|
|
@@ -15184,17 +15550,19 @@ interface PumpFees {
|
|
|
15184
15550
|
};
|
|
15185
15551
|
},
|
|
15186
15552
|
{
|
|
15187
|
-
name: "mint";
|
|
15188
|
-
relations: [
|
|
15553
|
+
"name": "mint";
|
|
15554
|
+
"relations": [
|
|
15555
|
+
"sharingConfig"
|
|
15556
|
+
];
|
|
15189
15557
|
},
|
|
15190
15558
|
{
|
|
15191
|
-
name: "sharingConfig";
|
|
15192
|
-
writable: true;
|
|
15193
|
-
pda: {
|
|
15194
|
-
seeds: [
|
|
15559
|
+
"name": "sharingConfig";
|
|
15560
|
+
"writable": true;
|
|
15561
|
+
"pda": {
|
|
15562
|
+
"seeds": [
|
|
15195
15563
|
{
|
|
15196
|
-
kind: "const";
|
|
15197
|
-
value: [
|
|
15564
|
+
"kind": "const";
|
|
15565
|
+
"value": [
|
|
15198
15566
|
115,
|
|
15199
15567
|
104,
|
|
15200
15568
|
97,
|
|
@@ -15212,19 +15580,19 @@ interface PumpFees {
|
|
|
15212
15580
|
];
|
|
15213
15581
|
},
|
|
15214
15582
|
{
|
|
15215
|
-
kind: "account";
|
|
15216
|
-
path: "mint";
|
|
15583
|
+
"kind": "account";
|
|
15584
|
+
"path": "mint";
|
|
15217
15585
|
}
|
|
15218
15586
|
];
|
|
15219
15587
|
};
|
|
15220
15588
|
},
|
|
15221
15589
|
{
|
|
15222
|
-
name: "bondingCurve";
|
|
15223
|
-
pda: {
|
|
15224
|
-
seeds: [
|
|
15590
|
+
"name": "bondingCurve";
|
|
15591
|
+
"pda": {
|
|
15592
|
+
"seeds": [
|
|
15225
15593
|
{
|
|
15226
|
-
kind: "const";
|
|
15227
|
-
value: [
|
|
15594
|
+
"kind": "const";
|
|
15595
|
+
"value": [
|
|
15228
15596
|
98,
|
|
15229
15597
|
111,
|
|
15230
15598
|
110,
|
|
@@ -15241,13 +15609,13 @@ interface PumpFees {
|
|
|
15241
15609
|
];
|
|
15242
15610
|
},
|
|
15243
15611
|
{
|
|
15244
|
-
kind: "account";
|
|
15245
|
-
path: "mint";
|
|
15612
|
+
"kind": "account";
|
|
15613
|
+
"path": "mint";
|
|
15246
15614
|
}
|
|
15247
15615
|
];
|
|
15248
|
-
program: {
|
|
15249
|
-
kind: "const";
|
|
15250
|
-
value: [
|
|
15616
|
+
"program": {
|
|
15617
|
+
"kind": "const";
|
|
15618
|
+
"value": [
|
|
15251
15619
|
1,
|
|
15252
15620
|
86,
|
|
15253
15621
|
224,
|
|
@@ -15285,13 +15653,13 @@ interface PumpFees {
|
|
|
15285
15653
|
};
|
|
15286
15654
|
},
|
|
15287
15655
|
{
|
|
15288
|
-
name: "pumpCreatorVault";
|
|
15289
|
-
writable: true;
|
|
15290
|
-
pda: {
|
|
15291
|
-
seeds: [
|
|
15656
|
+
"name": "pumpCreatorVault";
|
|
15657
|
+
"writable": true;
|
|
15658
|
+
"pda": {
|
|
15659
|
+
"seeds": [
|
|
15292
15660
|
{
|
|
15293
|
-
kind: "const";
|
|
15294
|
-
value: [
|
|
15661
|
+
"kind": "const";
|
|
15662
|
+
"value": [
|
|
15295
15663
|
99,
|
|
15296
15664
|
114,
|
|
15297
15665
|
101,
|
|
@@ -15308,13 +15676,13 @@ interface PumpFees {
|
|
|
15308
15676
|
];
|
|
15309
15677
|
},
|
|
15310
15678
|
{
|
|
15311
|
-
kind: "account";
|
|
15312
|
-
path: "sharingConfig";
|
|
15679
|
+
"kind": "account";
|
|
15680
|
+
"path": "sharingConfig";
|
|
15313
15681
|
}
|
|
15314
15682
|
];
|
|
15315
|
-
program: {
|
|
15316
|
-
kind: "const";
|
|
15317
|
-
value: [
|
|
15683
|
+
"program": {
|
|
15684
|
+
"kind": "const";
|
|
15685
|
+
"value": [
|
|
15318
15686
|
1,
|
|
15319
15687
|
86,
|
|
15320
15688
|
224,
|
|
@@ -15352,20 +15720,20 @@ interface PumpFees {
|
|
|
15352
15720
|
};
|
|
15353
15721
|
},
|
|
15354
15722
|
{
|
|
15355
|
-
name: "systemProgram";
|
|
15356
|
-
address: "11111111111111111111111111111111";
|
|
15723
|
+
"name": "systemProgram";
|
|
15724
|
+
"address": "11111111111111111111111111111111";
|
|
15357
15725
|
},
|
|
15358
15726
|
{
|
|
15359
|
-
name: "pumpProgram";
|
|
15360
|
-
address: "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P";
|
|
15727
|
+
"name": "pumpProgram";
|
|
15728
|
+
"address": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P";
|
|
15361
15729
|
},
|
|
15362
15730
|
{
|
|
15363
|
-
name: "pumpEventAuthority";
|
|
15364
|
-
pda: {
|
|
15365
|
-
seeds: [
|
|
15731
|
+
"name": "pumpEventAuthority";
|
|
15732
|
+
"pda": {
|
|
15733
|
+
"seeds": [
|
|
15366
15734
|
{
|
|
15367
|
-
kind: "const";
|
|
15368
|
-
value: [
|
|
15735
|
+
"kind": "const";
|
|
15736
|
+
"value": [
|
|
15369
15737
|
95,
|
|
15370
15738
|
95,
|
|
15371
15739
|
101,
|
|
@@ -15386,9 +15754,9 @@ interface PumpFees {
|
|
|
15386
15754
|
];
|
|
15387
15755
|
}
|
|
15388
15756
|
];
|
|
15389
|
-
program: {
|
|
15390
|
-
kind: "const";
|
|
15391
|
-
value: [
|
|
15757
|
+
"program": {
|
|
15758
|
+
"kind": "const";
|
|
15759
|
+
"value": [
|
|
15392
15760
|
1,
|
|
15393
15761
|
86,
|
|
15394
15762
|
224,
|
|
@@ -15426,16 +15794,16 @@ interface PumpFees {
|
|
|
15426
15794
|
};
|
|
15427
15795
|
},
|
|
15428
15796
|
{
|
|
15429
|
-
name: "pumpAmmProgram";
|
|
15430
|
-
address: "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA";
|
|
15797
|
+
"name": "pumpAmmProgram";
|
|
15798
|
+
"address": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA";
|
|
15431
15799
|
},
|
|
15432
15800
|
{
|
|
15433
|
-
name: "ammEventAuthority";
|
|
15434
|
-
pda: {
|
|
15435
|
-
seeds: [
|
|
15801
|
+
"name": "ammEventAuthority";
|
|
15802
|
+
"pda": {
|
|
15803
|
+
"seeds": [
|
|
15436
15804
|
{
|
|
15437
|
-
kind: "const";
|
|
15438
|
-
value: [
|
|
15805
|
+
"kind": "const";
|
|
15806
|
+
"value": [
|
|
15439
15807
|
95,
|
|
15440
15808
|
95,
|
|
15441
15809
|
101,
|
|
@@ -15456,9 +15824,9 @@ interface PumpFees {
|
|
|
15456
15824
|
];
|
|
15457
15825
|
}
|
|
15458
15826
|
];
|
|
15459
|
-
program: {
|
|
15460
|
-
kind: "const";
|
|
15461
|
-
value: [
|
|
15827
|
+
"program": {
|
|
15828
|
+
"kind": "const";
|
|
15829
|
+
"value": [
|
|
15462
15830
|
12,
|
|
15463
15831
|
20,
|
|
15464
15832
|
222,
|
|
@@ -15496,25 +15864,25 @@ interface PumpFees {
|
|
|
15496
15864
|
};
|
|
15497
15865
|
},
|
|
15498
15866
|
{
|
|
15499
|
-
name: "wsolMint";
|
|
15500
|
-
address: "So11111111111111111111111111111111111111112";
|
|
15867
|
+
"name": "wsolMint";
|
|
15868
|
+
"address": "So11111111111111111111111111111111111111112";
|
|
15501
15869
|
},
|
|
15502
15870
|
{
|
|
15503
|
-
name: "tokenProgram";
|
|
15504
|
-
address: "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
|
|
15871
|
+
"name": "tokenProgram";
|
|
15872
|
+
"address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
|
|
15505
15873
|
},
|
|
15506
15874
|
{
|
|
15507
|
-
name: "associatedTokenProgram";
|
|
15508
|
-
address: "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
|
|
15875
|
+
"name": "associatedTokenProgram";
|
|
15876
|
+
"address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
|
|
15509
15877
|
},
|
|
15510
15878
|
{
|
|
15511
|
-
name: "coinCreatorVaultAuthority";
|
|
15512
|
-
writable: true;
|
|
15513
|
-
pda: {
|
|
15514
|
-
seeds: [
|
|
15879
|
+
"name": "coinCreatorVaultAuthority";
|
|
15880
|
+
"writable": true;
|
|
15881
|
+
"pda": {
|
|
15882
|
+
"seeds": [
|
|
15515
15883
|
{
|
|
15516
|
-
kind: "const";
|
|
15517
|
-
value: [
|
|
15884
|
+
"kind": "const";
|
|
15885
|
+
"value": [
|
|
15518
15886
|
99,
|
|
15519
15887
|
114,
|
|
15520
15888
|
101,
|
|
@@ -15531,13 +15899,13 @@ interface PumpFees {
|
|
|
15531
15899
|
];
|
|
15532
15900
|
},
|
|
15533
15901
|
{
|
|
15534
|
-
kind: "account";
|
|
15535
|
-
path: "sharingConfig";
|
|
15902
|
+
"kind": "account";
|
|
15903
|
+
"path": "sharingConfig";
|
|
15536
15904
|
}
|
|
15537
15905
|
];
|
|
15538
|
-
program: {
|
|
15539
|
-
kind: "const";
|
|
15540
|
-
value: [
|
|
15906
|
+
"program": {
|
|
15907
|
+
"kind": "const";
|
|
15908
|
+
"value": [
|
|
15541
15909
|
12,
|
|
15542
15910
|
20,
|
|
15543
15911
|
222,
|
|
@@ -15575,17 +15943,17 @@ interface PumpFees {
|
|
|
15575
15943
|
};
|
|
15576
15944
|
},
|
|
15577
15945
|
{
|
|
15578
|
-
name: "coinCreatorVaultAta";
|
|
15579
|
-
writable: true;
|
|
15946
|
+
"name": "coinCreatorVaultAta";
|
|
15947
|
+
"writable": true;
|
|
15580
15948
|
}
|
|
15581
15949
|
];
|
|
15582
|
-
args: [
|
|
15950
|
+
"args": [
|
|
15583
15951
|
{
|
|
15584
|
-
name: "shareholders";
|
|
15585
|
-
type: {
|
|
15586
|
-
vec: {
|
|
15587
|
-
defined: {
|
|
15588
|
-
name: "shareholder";
|
|
15952
|
+
"name": "shareholders";
|
|
15953
|
+
"type": {
|
|
15954
|
+
"vec": {
|
|
15955
|
+
"defined": {
|
|
15956
|
+
"name": "shareholder";
|
|
15589
15957
|
};
|
|
15590
15958
|
};
|
|
15591
15959
|
};
|
|
@@ -15593,41 +15961,65 @@ interface PumpFees {
|
|
|
15593
15961
|
];
|
|
15594
15962
|
},
|
|
15595
15963
|
{
|
|
15596
|
-
name: "upsertFeeTiers";
|
|
15597
|
-
docs: [
|
|
15598
|
-
|
|
15599
|
-
|
|
15964
|
+
"name": "upsertFeeTiers";
|
|
15965
|
+
"docs": [
|
|
15966
|
+
"Update or expand fee tiers (only callable by admin)"
|
|
15967
|
+
];
|
|
15968
|
+
"discriminator": [
|
|
15969
|
+
227,
|
|
15970
|
+
23,
|
|
15971
|
+
150,
|
|
15972
|
+
12,
|
|
15973
|
+
77,
|
|
15974
|
+
86,
|
|
15975
|
+
94,
|
|
15976
|
+
4
|
|
15977
|
+
];
|
|
15978
|
+
"accounts": [
|
|
15600
15979
|
{
|
|
15601
|
-
name: "feeConfig";
|
|
15602
|
-
writable: true;
|
|
15603
|
-
pda: {
|
|
15604
|
-
seeds: [
|
|
15980
|
+
"name": "feeConfig";
|
|
15981
|
+
"writable": true;
|
|
15982
|
+
"pda": {
|
|
15983
|
+
"seeds": [
|
|
15605
15984
|
{
|
|
15606
|
-
kind: "const";
|
|
15607
|
-
value: [
|
|
15985
|
+
"kind": "const";
|
|
15986
|
+
"value": [
|
|
15987
|
+
102,
|
|
15988
|
+
101,
|
|
15989
|
+
101,
|
|
15990
|
+
95,
|
|
15991
|
+
99,
|
|
15992
|
+
111,
|
|
15993
|
+
110,
|
|
15994
|
+
102,
|
|
15995
|
+
105,
|
|
15996
|
+
103
|
|
15997
|
+
];
|
|
15608
15998
|
},
|
|
15609
15999
|
{
|
|
15610
|
-
kind: "account";
|
|
15611
|
-
path: "configProgramId";
|
|
16000
|
+
"kind": "account";
|
|
16001
|
+
"path": "configProgramId";
|
|
15612
16002
|
}
|
|
15613
16003
|
];
|
|
15614
16004
|
};
|
|
15615
16005
|
},
|
|
15616
16006
|
{
|
|
15617
|
-
name: "admin";
|
|
15618
|
-
signer: true;
|
|
15619
|
-
relations: [
|
|
16007
|
+
"name": "admin";
|
|
16008
|
+
"signer": true;
|
|
16009
|
+
"relations": [
|
|
16010
|
+
"feeConfig"
|
|
16011
|
+
];
|
|
15620
16012
|
},
|
|
15621
16013
|
{
|
|
15622
|
-
name: "configProgramId";
|
|
16014
|
+
"name": "configProgramId";
|
|
15623
16015
|
},
|
|
15624
16016
|
{
|
|
15625
|
-
name: "eventAuthority";
|
|
15626
|
-
pda: {
|
|
15627
|
-
seeds: [
|
|
16017
|
+
"name": "eventAuthority";
|
|
16018
|
+
"pda": {
|
|
16019
|
+
"seeds": [
|
|
15628
16020
|
{
|
|
15629
|
-
kind: "const";
|
|
15630
|
-
value: [
|
|
16021
|
+
"kind": "const";
|
|
16022
|
+
"value": [
|
|
15631
16023
|
95,
|
|
15632
16024
|
95,
|
|
15633
16025
|
101,
|
|
@@ -15651,341 +16043,532 @@ interface PumpFees {
|
|
|
15651
16043
|
};
|
|
15652
16044
|
},
|
|
15653
16045
|
{
|
|
15654
|
-
name: "program";
|
|
16046
|
+
"name": "program";
|
|
15655
16047
|
}
|
|
15656
16048
|
];
|
|
15657
|
-
args: [
|
|
16049
|
+
"args": [
|
|
15658
16050
|
{
|
|
15659
|
-
name: "feeTiers";
|
|
15660
|
-
type: {
|
|
15661
|
-
vec: {
|
|
15662
|
-
defined: {
|
|
15663
|
-
name: "feeTier";
|
|
16051
|
+
"name": "feeTiers";
|
|
16052
|
+
"type": {
|
|
16053
|
+
"vec": {
|
|
16054
|
+
"defined": {
|
|
16055
|
+
"name": "feeTier";
|
|
15664
16056
|
};
|
|
15665
16057
|
};
|
|
15666
16058
|
};
|
|
15667
16059
|
},
|
|
15668
16060
|
{
|
|
15669
|
-
name: "offset";
|
|
15670
|
-
type: "u8";
|
|
16061
|
+
"name": "offset";
|
|
16062
|
+
"type": "u8";
|
|
15671
16063
|
}
|
|
15672
16064
|
];
|
|
15673
16065
|
}
|
|
15674
16066
|
];
|
|
15675
|
-
accounts: [
|
|
15676
|
-
{
|
|
15677
|
-
name: "bondingCurve";
|
|
15678
|
-
discriminator: [
|
|
16067
|
+
"accounts": [
|
|
16068
|
+
{
|
|
16069
|
+
"name": "bondingCurve";
|
|
16070
|
+
"discriminator": [
|
|
16071
|
+
23,
|
|
16072
|
+
183,
|
|
16073
|
+
248,
|
|
16074
|
+
55,
|
|
16075
|
+
96,
|
|
16076
|
+
216,
|
|
16077
|
+
172,
|
|
16078
|
+
96
|
|
16079
|
+
];
|
|
15679
16080
|
},
|
|
15680
16081
|
{
|
|
15681
|
-
name: "feeConfig";
|
|
15682
|
-
discriminator: [
|
|
16082
|
+
"name": "feeConfig";
|
|
16083
|
+
"discriminator": [
|
|
16084
|
+
143,
|
|
16085
|
+
52,
|
|
16086
|
+
146,
|
|
16087
|
+
187,
|
|
16088
|
+
219,
|
|
16089
|
+
123,
|
|
16090
|
+
76,
|
|
16091
|
+
155
|
|
16092
|
+
];
|
|
15683
16093
|
},
|
|
15684
16094
|
{
|
|
15685
|
-
name: "feeProgramGlobal";
|
|
15686
|
-
discriminator: [
|
|
16095
|
+
"name": "feeProgramGlobal";
|
|
16096
|
+
"discriminator": [
|
|
16097
|
+
162,
|
|
16098
|
+
165,
|
|
16099
|
+
245,
|
|
16100
|
+
49,
|
|
16101
|
+
29,
|
|
16102
|
+
37,
|
|
16103
|
+
55,
|
|
16104
|
+
242
|
|
16105
|
+
];
|
|
15687
16106
|
},
|
|
15688
16107
|
{
|
|
15689
|
-
name: "global";
|
|
15690
|
-
discriminator: [
|
|
16108
|
+
"name": "global";
|
|
16109
|
+
"discriminator": [
|
|
16110
|
+
167,
|
|
16111
|
+
232,
|
|
16112
|
+
232,
|
|
16113
|
+
177,
|
|
16114
|
+
200,
|
|
16115
|
+
108,
|
|
16116
|
+
114,
|
|
16117
|
+
127
|
|
16118
|
+
];
|
|
15691
16119
|
},
|
|
15692
16120
|
{
|
|
15693
|
-
name: "pool";
|
|
15694
|
-
discriminator: [
|
|
16121
|
+
"name": "pool";
|
|
16122
|
+
"discriminator": [
|
|
16123
|
+
241,
|
|
16124
|
+
154,
|
|
16125
|
+
109,
|
|
16126
|
+
4,
|
|
16127
|
+
17,
|
|
16128
|
+
177,
|
|
16129
|
+
109,
|
|
16130
|
+
188
|
|
16131
|
+
];
|
|
15695
16132
|
},
|
|
15696
16133
|
{
|
|
15697
|
-
name: "sharingConfig";
|
|
15698
|
-
discriminator: [
|
|
16134
|
+
"name": "sharingConfig";
|
|
16135
|
+
"discriminator": [
|
|
16136
|
+
216,
|
|
16137
|
+
74,
|
|
16138
|
+
9,
|
|
16139
|
+
0,
|
|
16140
|
+
56,
|
|
16141
|
+
140,
|
|
16142
|
+
93,
|
|
16143
|
+
75
|
|
16144
|
+
];
|
|
15699
16145
|
},
|
|
15700
16146
|
{
|
|
15701
|
-
name: "socialFeePda";
|
|
15702
|
-
discriminator: [
|
|
16147
|
+
"name": "socialFeePda";
|
|
16148
|
+
"discriminator": [
|
|
16149
|
+
139,
|
|
16150
|
+
96,
|
|
16151
|
+
53,
|
|
16152
|
+
17,
|
|
16153
|
+
42,
|
|
16154
|
+
169,
|
|
16155
|
+
206,
|
|
16156
|
+
150
|
|
16157
|
+
];
|
|
15703
16158
|
}
|
|
15704
16159
|
];
|
|
15705
|
-
events: [
|
|
15706
|
-
{
|
|
15707
|
-
name: "createFeeSharingConfigEvent";
|
|
15708
|
-
discriminator: [
|
|
16160
|
+
"events": [
|
|
16161
|
+
{
|
|
16162
|
+
"name": "createFeeSharingConfigEvent";
|
|
16163
|
+
"discriminator": [
|
|
16164
|
+
133,
|
|
16165
|
+
105,
|
|
16166
|
+
170,
|
|
16167
|
+
200,
|
|
16168
|
+
184,
|
|
16169
|
+
116,
|
|
16170
|
+
251,
|
|
16171
|
+
88
|
|
16172
|
+
];
|
|
15709
16173
|
},
|
|
15710
16174
|
{
|
|
15711
|
-
name: "initializeFeeConfigEvent";
|
|
15712
|
-
discriminator: [
|
|
16175
|
+
"name": "initializeFeeConfigEvent";
|
|
16176
|
+
"discriminator": [
|
|
16177
|
+
89,
|
|
16178
|
+
138,
|
|
16179
|
+
244,
|
|
16180
|
+
230,
|
|
16181
|
+
10,
|
|
16182
|
+
56,
|
|
16183
|
+
226,
|
|
16184
|
+
126
|
|
16185
|
+
];
|
|
15713
16186
|
},
|
|
15714
16187
|
{
|
|
15715
|
-
name: "initializeFeeProgramGlobalEvent";
|
|
15716
|
-
discriminator: [
|
|
16188
|
+
"name": "initializeFeeProgramGlobalEvent";
|
|
16189
|
+
"discriminator": [
|
|
16190
|
+
40,
|
|
16191
|
+
233,
|
|
16192
|
+
156,
|
|
16193
|
+
78,
|
|
16194
|
+
95,
|
|
16195
|
+
0,
|
|
16196
|
+
8,
|
|
16197
|
+
199
|
|
16198
|
+
];
|
|
15717
16199
|
},
|
|
15718
16200
|
{
|
|
15719
|
-
name: "resetFeeSharingConfigEvent";
|
|
15720
|
-
discriminator: [
|
|
16201
|
+
"name": "resetFeeSharingConfigEvent";
|
|
16202
|
+
"discriminator": [
|
|
16203
|
+
203,
|
|
16204
|
+
204,
|
|
16205
|
+
151,
|
|
16206
|
+
226,
|
|
16207
|
+
120,
|
|
16208
|
+
55,
|
|
16209
|
+
214,
|
|
16210
|
+
243
|
|
16211
|
+
];
|
|
15721
16212
|
},
|
|
15722
16213
|
{
|
|
15723
|
-
name: "
|
|
15724
|
-
discriminator: [
|
|
16214
|
+
"name": "setAuthorityEvent";
|
|
16215
|
+
"discriminator": [
|
|
16216
|
+
18,
|
|
16217
|
+
175,
|
|
16218
|
+
132,
|
|
16219
|
+
66,
|
|
16220
|
+
208,
|
|
16221
|
+
201,
|
|
16222
|
+
87,
|
|
16223
|
+
242
|
|
16224
|
+
];
|
|
15725
16225
|
},
|
|
15726
16226
|
{
|
|
15727
|
-
name: "
|
|
15728
|
-
discriminator: [
|
|
16227
|
+
"name": "setClaimRateLimitEvent";
|
|
16228
|
+
"discriminator": [
|
|
16229
|
+
13,
|
|
16230
|
+
143,
|
|
16231
|
+
143,
|
|
16232
|
+
235,
|
|
16233
|
+
181,
|
|
16234
|
+
19,
|
|
16235
|
+
51,
|
|
16236
|
+
40
|
|
16237
|
+
];
|
|
15729
16238
|
},
|
|
15730
16239
|
{
|
|
15731
|
-
name: "
|
|
15732
|
-
discriminator: [
|
|
16240
|
+
"name": "setDisableFlagsEvent";
|
|
16241
|
+
"discriminator": [
|
|
16242
|
+
5,
|
|
16243
|
+
8,
|
|
16244
|
+
179,
|
|
16245
|
+
65,
|
|
16246
|
+
49,
|
|
16247
|
+
55,
|
|
16248
|
+
145,
|
|
16249
|
+
126
|
|
16250
|
+
];
|
|
15733
16251
|
},
|
|
15734
16252
|
{
|
|
15735
|
-
name: "
|
|
15736
|
-
discriminator: [
|
|
16253
|
+
"name": "setSocialClaimAuthorityEvent";
|
|
16254
|
+
"discriminator": [
|
|
16255
|
+
60,
|
|
16256
|
+
118,
|
|
16257
|
+
127,
|
|
16258
|
+
132,
|
|
16259
|
+
239,
|
|
16260
|
+
52,
|
|
16261
|
+
254,
|
|
16262
|
+
14
|
|
16263
|
+
];
|
|
15737
16264
|
},
|
|
15738
16265
|
{
|
|
15739
|
-
name: "
|
|
15740
|
-
discriminator: [
|
|
16266
|
+
"name": "socialFeePdaClaimed";
|
|
16267
|
+
"discriminator": [
|
|
16268
|
+
50,
|
|
16269
|
+
18,
|
|
16270
|
+
193,
|
|
16271
|
+
65,
|
|
16272
|
+
237,
|
|
16273
|
+
210,
|
|
16274
|
+
234,
|
|
16275
|
+
236
|
|
16276
|
+
];
|
|
15741
16277
|
},
|
|
15742
16278
|
{
|
|
15743
|
-
name: "
|
|
15744
|
-
discriminator: [
|
|
16279
|
+
"name": "socialFeePdaCreated";
|
|
16280
|
+
"discriminator": [
|
|
16281
|
+
183,
|
|
16282
|
+
183,
|
|
16283
|
+
218,
|
|
16284
|
+
147,
|
|
16285
|
+
24,
|
|
16286
|
+
124,
|
|
16287
|
+
137,
|
|
16288
|
+
169
|
|
16289
|
+
];
|
|
15745
16290
|
},
|
|
15746
16291
|
{
|
|
15747
|
-
name: "
|
|
15748
|
-
discriminator: [
|
|
16292
|
+
"name": "updateAdminEvent";
|
|
16293
|
+
"discriminator": [
|
|
16294
|
+
225,
|
|
16295
|
+
152,
|
|
16296
|
+
171,
|
|
16297
|
+
87,
|
|
16298
|
+
246,
|
|
16299
|
+
63,
|
|
16300
|
+
66,
|
|
16301
|
+
234
|
|
16302
|
+
];
|
|
15749
16303
|
},
|
|
15750
16304
|
{
|
|
15751
|
-
name: "
|
|
15752
|
-
discriminator: [
|
|
16305
|
+
"name": "updateFeeConfigEvent";
|
|
16306
|
+
"discriminator": [
|
|
16307
|
+
90,
|
|
16308
|
+
23,
|
|
16309
|
+
65,
|
|
16310
|
+
35,
|
|
16311
|
+
62,
|
|
16312
|
+
244,
|
|
16313
|
+
188,
|
|
16314
|
+
208
|
|
16315
|
+
];
|
|
15753
16316
|
},
|
|
15754
16317
|
{
|
|
15755
|
-
name: "
|
|
15756
|
-
discriminator: [
|
|
16318
|
+
"name": "updateFeeSharesEvent";
|
|
16319
|
+
"discriminator": [
|
|
16320
|
+
21,
|
|
16321
|
+
186,
|
|
16322
|
+
196,
|
|
16323
|
+
184,
|
|
16324
|
+
91,
|
|
16325
|
+
228,
|
|
16326
|
+
225,
|
|
16327
|
+
203
|
|
16328
|
+
];
|
|
15757
16329
|
},
|
|
15758
16330
|
{
|
|
15759
|
-
name: "
|
|
15760
|
-
discriminator: [
|
|
15761
|
-
|
|
16331
|
+
"name": "upsertFeeTiersEvent";
|
|
16332
|
+
"discriminator": [
|
|
16333
|
+
171,
|
|
16334
|
+
89,
|
|
16335
|
+
169,
|
|
16336
|
+
187,
|
|
16337
|
+
122,
|
|
16338
|
+
186,
|
|
16339
|
+
33,
|
|
16340
|
+
204
|
|
16341
|
+
];
|
|
16342
|
+
}
|
|
16343
|
+
];
|
|
16344
|
+
"errors": [
|
|
15762
16345
|
{
|
|
15763
|
-
|
|
15764
|
-
|
|
16346
|
+
"code": 6000;
|
|
16347
|
+
"name": "unauthorizedProgram";
|
|
16348
|
+
"msg": "Only Pump and PumpSwap programs can call this instruction";
|
|
15765
16349
|
},
|
|
15766
16350
|
{
|
|
15767
|
-
|
|
15768
|
-
|
|
15769
|
-
|
|
15770
|
-
|
|
15771
|
-
errors: [
|
|
16351
|
+
"code": 6001;
|
|
16352
|
+
"name": "invalidAdmin";
|
|
16353
|
+
"msg": "Invalid admin";
|
|
16354
|
+
},
|
|
15772
16355
|
{
|
|
15773
|
-
code:
|
|
15774
|
-
name: "
|
|
15775
|
-
msg: "
|
|
16356
|
+
"code": 6002;
|
|
16357
|
+
"name": "noFeeTiers";
|
|
16358
|
+
"msg": "No fee tiers provided";
|
|
15776
16359
|
},
|
|
15777
16360
|
{
|
|
15778
|
-
code:
|
|
15779
|
-
name: "
|
|
15780
|
-
msg: "
|
|
16361
|
+
"code": 6003;
|
|
16362
|
+
"name": "tooManyFeeTiers";
|
|
16363
|
+
"msg": "format";
|
|
15781
16364
|
},
|
|
15782
16365
|
{
|
|
15783
|
-
code:
|
|
15784
|
-
name: "
|
|
15785
|
-
msg: "
|
|
16366
|
+
"code": 6004;
|
|
16367
|
+
"name": "offsetNotContinuous";
|
|
16368
|
+
"msg": "The offset should be <= fee_config.fee_tiers.len()";
|
|
15786
16369
|
},
|
|
15787
16370
|
{
|
|
15788
|
-
code:
|
|
15789
|
-
name: "
|
|
15790
|
-
msg: "
|
|
16371
|
+
"code": 6005;
|
|
16372
|
+
"name": "feeTiersNotSorted";
|
|
16373
|
+
"msg": "Fee tiers must be sorted by market cap threshold (ascending)";
|
|
15791
16374
|
},
|
|
15792
16375
|
{
|
|
15793
|
-
code:
|
|
15794
|
-
name: "
|
|
15795
|
-
msg: "
|
|
16376
|
+
"code": 6006;
|
|
16377
|
+
"name": "invalidFeeTotal";
|
|
16378
|
+
"msg": "Fee total must not exceed 10_000bps";
|
|
15796
16379
|
},
|
|
15797
16380
|
{
|
|
15798
|
-
code:
|
|
15799
|
-
name: "
|
|
15800
|
-
msg: "
|
|
16381
|
+
"code": 6007;
|
|
16382
|
+
"name": "invalidSharingConfig";
|
|
16383
|
+
"msg": "Invalid Sharing Config";
|
|
15801
16384
|
},
|
|
15802
16385
|
{
|
|
15803
|
-
code:
|
|
15804
|
-
name: "
|
|
15805
|
-
msg: "
|
|
16386
|
+
"code": 6008;
|
|
16387
|
+
"name": "invalidPool";
|
|
16388
|
+
"msg": "Invalid Pool";
|
|
15806
16389
|
},
|
|
15807
16390
|
{
|
|
15808
|
-
code:
|
|
15809
|
-
name: "
|
|
15810
|
-
msg: "
|
|
16391
|
+
"code": 6009;
|
|
16392
|
+
"name": "sharingConfigAdminRevoked";
|
|
16393
|
+
"msg": "Sharing config authority has been revoked - sharing config can only be updated once";
|
|
15811
16394
|
},
|
|
15812
16395
|
{
|
|
15813
|
-
code:
|
|
15814
|
-
name: "
|
|
15815
|
-
msg: "
|
|
16396
|
+
"code": 6010;
|
|
16397
|
+
"name": "noShareholders";
|
|
16398
|
+
"msg": "No shareholders provided";
|
|
15816
16399
|
},
|
|
15817
16400
|
{
|
|
15818
|
-
code:
|
|
15819
|
-
name: "
|
|
15820
|
-
msg: "
|
|
16401
|
+
"code": 6011;
|
|
16402
|
+
"name": "tooManyShareholders";
|
|
16403
|
+
"msg": "format";
|
|
15821
16404
|
},
|
|
15822
16405
|
{
|
|
15823
|
-
code:
|
|
15824
|
-
name: "
|
|
15825
|
-
msg: "
|
|
16406
|
+
"code": 6012;
|
|
16407
|
+
"name": "duplicateShareholder";
|
|
16408
|
+
"msg": "Duplicate shareholder address";
|
|
15826
16409
|
},
|
|
15827
16410
|
{
|
|
15828
|
-
code:
|
|
15829
|
-
name: "
|
|
15830
|
-
msg: "
|
|
16411
|
+
"code": 6013;
|
|
16412
|
+
"name": "notEnoughRemainingAccounts";
|
|
16413
|
+
"msg": "Not enough remaining accounts";
|
|
15831
16414
|
},
|
|
15832
16415
|
{
|
|
15833
|
-
code:
|
|
15834
|
-
name: "
|
|
15835
|
-
msg: "
|
|
16416
|
+
"code": 6014;
|
|
16417
|
+
"name": "invalidShareTotal";
|
|
16418
|
+
"msg": "Invalid share total - must equal 10_000 basis points";
|
|
15836
16419
|
},
|
|
15837
16420
|
{
|
|
15838
|
-
code:
|
|
15839
|
-
name: "
|
|
15840
|
-
msg: "
|
|
16421
|
+
"code": 6015;
|
|
16422
|
+
"name": "shareCalculationOverflow";
|
|
16423
|
+
"msg": "Share calculation overflow";
|
|
15841
16424
|
},
|
|
15842
16425
|
{
|
|
15843
|
-
code:
|
|
15844
|
-
name: "
|
|
15845
|
-
msg: "
|
|
16426
|
+
"code": 6016;
|
|
16427
|
+
"name": "notAuthorized";
|
|
16428
|
+
"msg": "The given account is not authorized to execute this instruction.";
|
|
15846
16429
|
},
|
|
15847
16430
|
{
|
|
15848
|
-
code:
|
|
15849
|
-
name: "
|
|
15850
|
-
msg: "
|
|
16431
|
+
"code": 6017;
|
|
16432
|
+
"name": "zeroShareNotAllowed";
|
|
16433
|
+
"msg": "Shareholder cannot have zero share";
|
|
15851
16434
|
},
|
|
15852
16435
|
{
|
|
15853
|
-
code:
|
|
15854
|
-
name: "
|
|
15855
|
-
msg: "
|
|
16436
|
+
"code": 6018;
|
|
16437
|
+
"name": "sharingConfigNotActive";
|
|
16438
|
+
"msg": "Fee sharing config is not active";
|
|
15856
16439
|
},
|
|
15857
16440
|
{
|
|
15858
|
-
code:
|
|
15859
|
-
name: "
|
|
15860
|
-
msg: "
|
|
16441
|
+
"code": 6019;
|
|
16442
|
+
"name": "ammAccountsRequiredForGraduatedCoin";
|
|
16443
|
+
"msg": "AMM accounts are required for graduated coins";
|
|
15861
16444
|
},
|
|
15862
16445
|
{
|
|
15863
|
-
code:
|
|
15864
|
-
name: "
|
|
15865
|
-
msg: "
|
|
16446
|
+
"code": 6020;
|
|
16447
|
+
"name": "shareholderAccountMismatch";
|
|
16448
|
+
"msg": "Remaining account key doesn't match shareholder address";
|
|
15866
16449
|
},
|
|
15867
16450
|
{
|
|
15868
|
-
code:
|
|
15869
|
-
name: "
|
|
15870
|
-
msg: "
|
|
16451
|
+
"code": 6021;
|
|
16452
|
+
"name": "featureDeactivated";
|
|
16453
|
+
"msg": "Feature is currently deactivated";
|
|
15871
16454
|
},
|
|
15872
16455
|
{
|
|
15873
|
-
code:
|
|
15874
|
-
name: "
|
|
15875
|
-
msg: "
|
|
16456
|
+
"code": 6022;
|
|
16457
|
+
"name": "userIdTooLong";
|
|
16458
|
+
"msg": "User ID exceeds maximum length";
|
|
15876
16459
|
},
|
|
15877
16460
|
{
|
|
15878
|
-
code:
|
|
15879
|
-
name: "
|
|
15880
|
-
msg: "
|
|
16461
|
+
"code": 6023;
|
|
16462
|
+
"name": "deprecatedInstruction";
|
|
16463
|
+
"msg": "Instruction is deprecated";
|
|
15881
16464
|
},
|
|
15882
16465
|
{
|
|
15883
|
-
code:
|
|
15884
|
-
name: "
|
|
15885
|
-
msg: "
|
|
16466
|
+
"code": 6024;
|
|
16467
|
+
"name": "feeSharesAlreadyUpdated";
|
|
16468
|
+
"msg": "Reward split can only be updated once";
|
|
15886
16469
|
}
|
|
15887
16470
|
];
|
|
15888
|
-
types: [
|
|
16471
|
+
"types": [
|
|
15889
16472
|
{
|
|
15890
|
-
name: "bondingCurve";
|
|
15891
|
-
type: {
|
|
15892
|
-
kind: "struct";
|
|
15893
|
-
fields: [
|
|
16473
|
+
"name": "bondingCurve";
|
|
16474
|
+
"type": {
|
|
16475
|
+
"kind": "struct";
|
|
16476
|
+
"fields": [
|
|
15894
16477
|
{
|
|
15895
|
-
name: "virtualTokenReserves";
|
|
15896
|
-
type: "u64";
|
|
16478
|
+
"name": "virtualTokenReserves";
|
|
16479
|
+
"type": "u64";
|
|
15897
16480
|
},
|
|
15898
16481
|
{
|
|
15899
|
-
name: "virtualSolReserves";
|
|
15900
|
-
type: "u64";
|
|
16482
|
+
"name": "virtualSolReserves";
|
|
16483
|
+
"type": "u64";
|
|
15901
16484
|
},
|
|
15902
16485
|
{
|
|
15903
|
-
name: "realTokenReserves";
|
|
15904
|
-
type: "u64";
|
|
16486
|
+
"name": "realTokenReserves";
|
|
16487
|
+
"type": "u64";
|
|
15905
16488
|
},
|
|
15906
16489
|
{
|
|
15907
|
-
name: "realSolReserves";
|
|
15908
|
-
type: "u64";
|
|
16490
|
+
"name": "realSolReserves";
|
|
16491
|
+
"type": "u64";
|
|
15909
16492
|
},
|
|
15910
16493
|
{
|
|
15911
|
-
name: "tokenTotalSupply";
|
|
15912
|
-
type: "u64";
|
|
16494
|
+
"name": "tokenTotalSupply";
|
|
16495
|
+
"type": "u64";
|
|
15913
16496
|
},
|
|
15914
16497
|
{
|
|
15915
|
-
name: "complete";
|
|
15916
|
-
type: "bool";
|
|
16498
|
+
"name": "complete";
|
|
16499
|
+
"type": "bool";
|
|
15917
16500
|
},
|
|
15918
16501
|
{
|
|
15919
|
-
name: "creator";
|
|
15920
|
-
type: "pubkey";
|
|
16502
|
+
"name": "creator";
|
|
16503
|
+
"type": "pubkey";
|
|
15921
16504
|
},
|
|
15922
16505
|
{
|
|
15923
|
-
name: "isMayhemMode";
|
|
15924
|
-
type: "bool";
|
|
16506
|
+
"name": "isMayhemMode";
|
|
16507
|
+
"type": "bool";
|
|
15925
16508
|
}
|
|
15926
16509
|
];
|
|
15927
16510
|
};
|
|
15928
16511
|
},
|
|
15929
16512
|
{
|
|
15930
|
-
name: "configStatus";
|
|
15931
|
-
type: {
|
|
15932
|
-
kind: "enum";
|
|
15933
|
-
variants: [
|
|
16513
|
+
"name": "configStatus";
|
|
16514
|
+
"type": {
|
|
16515
|
+
"kind": "enum";
|
|
16516
|
+
"variants": [
|
|
15934
16517
|
{
|
|
15935
|
-
name: "paused";
|
|
16518
|
+
"name": "paused";
|
|
15936
16519
|
},
|
|
15937
16520
|
{
|
|
15938
|
-
name: "active";
|
|
16521
|
+
"name": "active";
|
|
15939
16522
|
}
|
|
15940
16523
|
];
|
|
15941
16524
|
};
|
|
15942
16525
|
},
|
|
15943
16526
|
{
|
|
15944
|
-
name: "createFeeSharingConfigEvent";
|
|
15945
|
-
type: {
|
|
15946
|
-
kind: "struct";
|
|
15947
|
-
fields: [
|
|
16527
|
+
"name": "createFeeSharingConfigEvent";
|
|
16528
|
+
"type": {
|
|
16529
|
+
"kind": "struct";
|
|
16530
|
+
"fields": [
|
|
15948
16531
|
{
|
|
15949
|
-
name: "timestamp";
|
|
15950
|
-
type: "i64";
|
|
16532
|
+
"name": "timestamp";
|
|
16533
|
+
"type": "i64";
|
|
15951
16534
|
},
|
|
15952
16535
|
{
|
|
15953
|
-
name: "mint";
|
|
15954
|
-
type: "pubkey";
|
|
16536
|
+
"name": "mint";
|
|
16537
|
+
"type": "pubkey";
|
|
15955
16538
|
},
|
|
15956
16539
|
{
|
|
15957
|
-
name: "bondingCurve";
|
|
15958
|
-
type: "pubkey";
|
|
16540
|
+
"name": "bondingCurve";
|
|
16541
|
+
"type": "pubkey";
|
|
15959
16542
|
},
|
|
15960
16543
|
{
|
|
15961
|
-
name: "pool";
|
|
15962
|
-
type: {
|
|
15963
|
-
option: "pubkey";
|
|
16544
|
+
"name": "pool";
|
|
16545
|
+
"type": {
|
|
16546
|
+
"option": "pubkey";
|
|
15964
16547
|
};
|
|
15965
16548
|
},
|
|
15966
16549
|
{
|
|
15967
|
-
name: "sharingConfig";
|
|
15968
|
-
type: "pubkey";
|
|
16550
|
+
"name": "sharingConfig";
|
|
16551
|
+
"type": "pubkey";
|
|
15969
16552
|
},
|
|
15970
16553
|
{
|
|
15971
|
-
name: "admin";
|
|
15972
|
-
type: "pubkey";
|
|
16554
|
+
"name": "admin";
|
|
16555
|
+
"type": "pubkey";
|
|
15973
16556
|
},
|
|
15974
16557
|
{
|
|
15975
|
-
name: "initialShareholders";
|
|
15976
|
-
type: {
|
|
15977
|
-
vec: {
|
|
15978
|
-
defined: {
|
|
15979
|
-
name: "shareholder";
|
|
16558
|
+
"name": "initialShareholders";
|
|
16559
|
+
"type": {
|
|
16560
|
+
"vec": {
|
|
16561
|
+
"defined": {
|
|
16562
|
+
"name": "shareholder";
|
|
15980
16563
|
};
|
|
15981
16564
|
};
|
|
15982
16565
|
};
|
|
15983
16566
|
},
|
|
15984
16567
|
{
|
|
15985
|
-
name: "status";
|
|
15986
|
-
type: {
|
|
15987
|
-
defined: {
|
|
15988
|
-
name: "configStatus";
|
|
16568
|
+
"name": "status";
|
|
16569
|
+
"type": {
|
|
16570
|
+
"defined": {
|
|
16571
|
+
"name": "configStatus";
|
|
15989
16572
|
};
|
|
15990
16573
|
};
|
|
15991
16574
|
}
|
|
@@ -15993,36 +16576,44 @@ interface PumpFees {
|
|
|
15993
16576
|
};
|
|
15994
16577
|
},
|
|
15995
16578
|
{
|
|
15996
|
-
name: "feeConfig";
|
|
15997
|
-
type: {
|
|
15998
|
-
kind: "struct";
|
|
15999
|
-
fields: [
|
|
16579
|
+
"name": "feeConfig";
|
|
16580
|
+
"type": {
|
|
16581
|
+
"kind": "struct";
|
|
16582
|
+
"fields": [
|
|
16000
16583
|
{
|
|
16001
|
-
name: "bump";
|
|
16002
|
-
docs: [
|
|
16003
|
-
|
|
16584
|
+
"name": "bump";
|
|
16585
|
+
"docs": [
|
|
16586
|
+
"The bump for the PDA"
|
|
16587
|
+
];
|
|
16588
|
+
"type": "u8";
|
|
16004
16589
|
},
|
|
16005
16590
|
{
|
|
16006
|
-
name: "admin";
|
|
16007
|
-
docs: [
|
|
16008
|
-
|
|
16591
|
+
"name": "admin";
|
|
16592
|
+
"docs": [
|
|
16593
|
+
"The admin account that can update the fee config"
|
|
16594
|
+
];
|
|
16595
|
+
"type": "pubkey";
|
|
16009
16596
|
},
|
|
16010
16597
|
{
|
|
16011
|
-
name: "flatFees";
|
|
16012
|
-
docs: [
|
|
16013
|
-
|
|
16014
|
-
|
|
16015
|
-
|
|
16598
|
+
"name": "flatFees";
|
|
16599
|
+
"docs": [
|
|
16600
|
+
"The flat fees for non-pump pools"
|
|
16601
|
+
];
|
|
16602
|
+
"type": {
|
|
16603
|
+
"defined": {
|
|
16604
|
+
"name": "fees";
|
|
16016
16605
|
};
|
|
16017
16606
|
};
|
|
16018
16607
|
},
|
|
16019
16608
|
{
|
|
16020
|
-
name: "feeTiers";
|
|
16021
|
-
docs: [
|
|
16022
|
-
|
|
16023
|
-
|
|
16024
|
-
|
|
16025
|
-
|
|
16609
|
+
"name": "feeTiers";
|
|
16610
|
+
"docs": [
|
|
16611
|
+
"The fee tiers"
|
|
16612
|
+
];
|
|
16613
|
+
"type": {
|
|
16614
|
+
"vec": {
|
|
16615
|
+
"defined": {
|
|
16616
|
+
"name": "feeTier";
|
|
16026
16617
|
};
|
|
16027
16618
|
};
|
|
16028
16619
|
};
|
|
@@ -16031,53 +16622,56 @@ interface PumpFees {
|
|
|
16031
16622
|
};
|
|
16032
16623
|
},
|
|
16033
16624
|
{
|
|
16034
|
-
name: "feeProgramGlobal";
|
|
16035
|
-
type: {
|
|
16036
|
-
kind: "struct";
|
|
16037
|
-
fields: [
|
|
16625
|
+
"name": "feeProgramGlobal";
|
|
16626
|
+
"type": {
|
|
16627
|
+
"kind": "struct";
|
|
16628
|
+
"fields": [
|
|
16038
16629
|
{
|
|
16039
|
-
name: "bump";
|
|
16040
|
-
type: "u8";
|
|
16630
|
+
"name": "bump";
|
|
16631
|
+
"type": "u8";
|
|
16041
16632
|
},
|
|
16042
16633
|
{
|
|
16043
|
-
name: "authority";
|
|
16044
|
-
type: "pubkey";
|
|
16634
|
+
"name": "authority";
|
|
16635
|
+
"type": "pubkey";
|
|
16045
16636
|
},
|
|
16046
16637
|
{
|
|
16047
|
-
name: "disableFlags";
|
|
16048
|
-
type: "u8";
|
|
16638
|
+
"name": "disableFlags";
|
|
16639
|
+
"type": "u8";
|
|
16049
16640
|
},
|
|
16050
16641
|
{
|
|
16051
|
-
name: "socialClaimAuthority";
|
|
16052
|
-
type: "pubkey";
|
|
16642
|
+
"name": "socialClaimAuthority";
|
|
16643
|
+
"type": "pubkey";
|
|
16053
16644
|
},
|
|
16054
16645
|
{
|
|
16055
|
-
name: "claimRateLimit";
|
|
16056
|
-
type: "u64";
|
|
16646
|
+
"name": "claimRateLimit";
|
|
16647
|
+
"type": "u64";
|
|
16057
16648
|
},
|
|
16058
16649
|
{
|
|
16059
|
-
name: "reserved";
|
|
16060
|
-
type: {
|
|
16061
|
-
array: [
|
|
16650
|
+
"name": "reserved";
|
|
16651
|
+
"type": {
|
|
16652
|
+
"array": [
|
|
16653
|
+
"u8",
|
|
16654
|
+
256
|
|
16655
|
+
];
|
|
16062
16656
|
};
|
|
16063
16657
|
}
|
|
16064
16658
|
];
|
|
16065
16659
|
};
|
|
16066
16660
|
},
|
|
16067
16661
|
{
|
|
16068
|
-
name: "feeTier";
|
|
16069
|
-
type: {
|
|
16070
|
-
kind: "struct";
|
|
16071
|
-
fields: [
|
|
16662
|
+
"name": "feeTier";
|
|
16663
|
+
"type": {
|
|
16664
|
+
"kind": "struct";
|
|
16665
|
+
"fields": [
|
|
16072
16666
|
{
|
|
16073
|
-
name: "marketCapLamportsThreshold";
|
|
16074
|
-
type: "u128";
|
|
16667
|
+
"name": "marketCapLamportsThreshold";
|
|
16668
|
+
"type": "u128";
|
|
16075
16669
|
},
|
|
16076
16670
|
{
|
|
16077
|
-
name: "fees";
|
|
16078
|
-
type: {
|
|
16079
|
-
defined: {
|
|
16080
|
-
name: "fees";
|
|
16671
|
+
"name": "fees";
|
|
16672
|
+
"type": {
|
|
16673
|
+
"defined": {
|
|
16674
|
+
"name": "fees";
|
|
16081
16675
|
};
|
|
16082
16676
|
};
|
|
16083
16677
|
}
|
|
@@ -16085,412 +16679,402 @@ interface PumpFees {
|
|
|
16085
16679
|
};
|
|
16086
16680
|
},
|
|
16087
16681
|
{
|
|
16088
|
-
name: "fees";
|
|
16089
|
-
type: {
|
|
16090
|
-
kind: "struct";
|
|
16091
|
-
fields: [
|
|
16682
|
+
"name": "fees";
|
|
16683
|
+
"type": {
|
|
16684
|
+
"kind": "struct";
|
|
16685
|
+
"fields": [
|
|
16092
16686
|
{
|
|
16093
|
-
name: "lpFeeBps";
|
|
16094
|
-
type: "u64";
|
|
16687
|
+
"name": "lpFeeBps";
|
|
16688
|
+
"type": "u64";
|
|
16095
16689
|
},
|
|
16096
16690
|
{
|
|
16097
|
-
name: "protocolFeeBps";
|
|
16098
|
-
type: "u64";
|
|
16691
|
+
"name": "protocolFeeBps";
|
|
16692
|
+
"type": "u64";
|
|
16099
16693
|
},
|
|
16100
16694
|
{
|
|
16101
|
-
name: "creatorFeeBps";
|
|
16102
|
-
type: "u64";
|
|
16695
|
+
"name": "creatorFeeBps";
|
|
16696
|
+
"type": "u64";
|
|
16103
16697
|
}
|
|
16104
16698
|
];
|
|
16105
16699
|
};
|
|
16106
16700
|
},
|
|
16107
16701
|
{
|
|
16108
|
-
name: "global";
|
|
16109
|
-
type: {
|
|
16110
|
-
kind: "struct";
|
|
16111
|
-
fields: [
|
|
16702
|
+
"name": "global";
|
|
16703
|
+
"type": {
|
|
16704
|
+
"kind": "struct";
|
|
16705
|
+
"fields": [
|
|
16112
16706
|
{
|
|
16113
|
-
name: "initialized";
|
|
16114
|
-
type: "bool";
|
|
16707
|
+
"name": "initialized";
|
|
16708
|
+
"type": "bool";
|
|
16115
16709
|
},
|
|
16116
16710
|
{
|
|
16117
|
-
name: "authority";
|
|
16118
|
-
type: "pubkey";
|
|
16711
|
+
"name": "authority";
|
|
16712
|
+
"type": "pubkey";
|
|
16119
16713
|
},
|
|
16120
16714
|
{
|
|
16121
|
-
name: "feeRecipient";
|
|
16122
|
-
type: "pubkey";
|
|
16715
|
+
"name": "feeRecipient";
|
|
16716
|
+
"type": "pubkey";
|
|
16123
16717
|
},
|
|
16124
16718
|
{
|
|
16125
|
-
name: "initialVirtualTokenReserves";
|
|
16126
|
-
type: "u64";
|
|
16719
|
+
"name": "initialVirtualTokenReserves";
|
|
16720
|
+
"type": "u64";
|
|
16127
16721
|
},
|
|
16128
16722
|
{
|
|
16129
|
-
name: "initialVirtualSolReserves";
|
|
16130
|
-
type: "u64";
|
|
16723
|
+
"name": "initialVirtualSolReserves";
|
|
16724
|
+
"type": "u64";
|
|
16131
16725
|
},
|
|
16132
16726
|
{
|
|
16133
|
-
name: "initialRealTokenReserves";
|
|
16134
|
-
type: "u64";
|
|
16727
|
+
"name": "initialRealTokenReserves";
|
|
16728
|
+
"type": "u64";
|
|
16135
16729
|
},
|
|
16136
16730
|
{
|
|
16137
|
-
name: "tokenTotalSupply";
|
|
16138
|
-
type: "u64";
|
|
16731
|
+
"name": "tokenTotalSupply";
|
|
16732
|
+
"type": "u64";
|
|
16139
16733
|
},
|
|
16140
16734
|
{
|
|
16141
|
-
name: "feeBasisPoints";
|
|
16142
|
-
type: "u64";
|
|
16735
|
+
"name": "feeBasisPoints";
|
|
16736
|
+
"type": "u64";
|
|
16143
16737
|
},
|
|
16144
16738
|
{
|
|
16145
|
-
name: "withdrawAuthority";
|
|
16146
|
-
type: "pubkey";
|
|
16739
|
+
"name": "withdrawAuthority";
|
|
16740
|
+
"type": "pubkey";
|
|
16147
16741
|
},
|
|
16148
16742
|
{
|
|
16149
|
-
name: "enableMigrate";
|
|
16150
|
-
type: "bool";
|
|
16743
|
+
"name": "enableMigrate";
|
|
16744
|
+
"type": "bool";
|
|
16151
16745
|
},
|
|
16152
16746
|
{
|
|
16153
|
-
name: "poolMigrationFee";
|
|
16154
|
-
type: "u64";
|
|
16747
|
+
"name": "poolMigrationFee";
|
|
16748
|
+
"type": "u64";
|
|
16155
16749
|
},
|
|
16156
16750
|
{
|
|
16157
|
-
name: "creatorFeeBasisPoints";
|
|
16158
|
-
type: "u64";
|
|
16751
|
+
"name": "creatorFeeBasisPoints";
|
|
16752
|
+
"type": "u64";
|
|
16159
16753
|
},
|
|
16160
16754
|
{
|
|
16161
|
-
name: "feeRecipients";
|
|
16162
|
-
type: {
|
|
16163
|
-
array: [
|
|
16755
|
+
"name": "feeRecipients";
|
|
16756
|
+
"type": {
|
|
16757
|
+
"array": [
|
|
16758
|
+
"pubkey",
|
|
16759
|
+
7
|
|
16760
|
+
];
|
|
16164
16761
|
};
|
|
16165
16762
|
},
|
|
16166
16763
|
{
|
|
16167
|
-
name: "setCreatorAuthority";
|
|
16168
|
-
type: "pubkey";
|
|
16764
|
+
"name": "setCreatorAuthority";
|
|
16765
|
+
"type": "pubkey";
|
|
16169
16766
|
},
|
|
16170
16767
|
{
|
|
16171
|
-
name: "adminSetCreatorAuthority";
|
|
16172
|
-
type: "pubkey";
|
|
16768
|
+
"name": "adminSetCreatorAuthority";
|
|
16769
|
+
"type": "pubkey";
|
|
16173
16770
|
},
|
|
16174
16771
|
{
|
|
16175
|
-
name: "createV2Enabled";
|
|
16176
|
-
type: "bool";
|
|
16772
|
+
"name": "createV2Enabled";
|
|
16773
|
+
"type": "bool";
|
|
16177
16774
|
},
|
|
16178
16775
|
{
|
|
16179
|
-
name: "whitelistPda";
|
|
16180
|
-
type: "pubkey";
|
|
16776
|
+
"name": "whitelistPda";
|
|
16777
|
+
"type": "pubkey";
|
|
16181
16778
|
},
|
|
16182
16779
|
{
|
|
16183
|
-
name: "reservedFeeRecipient";
|
|
16184
|
-
type: "pubkey";
|
|
16780
|
+
"name": "reservedFeeRecipient";
|
|
16781
|
+
"type": "pubkey";
|
|
16185
16782
|
},
|
|
16186
16783
|
{
|
|
16187
|
-
name: "mayhemModeEnabled";
|
|
16188
|
-
type: "bool";
|
|
16784
|
+
"name": "mayhemModeEnabled";
|
|
16785
|
+
"type": "bool";
|
|
16189
16786
|
},
|
|
16190
16787
|
{
|
|
16191
|
-
name: "reservedFeeRecipients";
|
|
16192
|
-
type: {
|
|
16193
|
-
array: [
|
|
16788
|
+
"name": "reservedFeeRecipients";
|
|
16789
|
+
"type": {
|
|
16790
|
+
"array": [
|
|
16791
|
+
"pubkey",
|
|
16792
|
+
7
|
|
16793
|
+
];
|
|
16194
16794
|
};
|
|
16195
16795
|
}
|
|
16196
16796
|
];
|
|
16197
16797
|
};
|
|
16198
16798
|
},
|
|
16199
16799
|
{
|
|
16200
|
-
name: "initializeFeeConfigEvent";
|
|
16201
|
-
type: {
|
|
16202
|
-
kind: "struct";
|
|
16203
|
-
fields: [
|
|
16800
|
+
"name": "initializeFeeConfigEvent";
|
|
16801
|
+
"type": {
|
|
16802
|
+
"kind": "struct";
|
|
16803
|
+
"fields": [
|
|
16204
16804
|
{
|
|
16205
|
-
name: "timestamp";
|
|
16206
|
-
type: "i64";
|
|
16805
|
+
"name": "timestamp";
|
|
16806
|
+
"type": "i64";
|
|
16207
16807
|
},
|
|
16208
16808
|
{
|
|
16209
|
-
name: "admin";
|
|
16210
|
-
type: "pubkey";
|
|
16809
|
+
"name": "admin";
|
|
16810
|
+
"type": "pubkey";
|
|
16211
16811
|
},
|
|
16212
16812
|
{
|
|
16213
|
-
name: "feeConfig";
|
|
16214
|
-
type: "pubkey";
|
|
16813
|
+
"name": "feeConfig";
|
|
16814
|
+
"type": "pubkey";
|
|
16215
16815
|
}
|
|
16216
16816
|
];
|
|
16217
16817
|
};
|
|
16218
16818
|
},
|
|
16219
16819
|
{
|
|
16220
|
-
name: "initializeFeeProgramGlobalEvent";
|
|
16221
|
-
type: {
|
|
16222
|
-
kind: "struct";
|
|
16223
|
-
fields: [
|
|
16820
|
+
"name": "initializeFeeProgramGlobalEvent";
|
|
16821
|
+
"type": {
|
|
16822
|
+
"kind": "struct";
|
|
16823
|
+
"fields": [
|
|
16224
16824
|
{
|
|
16225
|
-
name: "timestamp";
|
|
16226
|
-
type: "i64";
|
|
16825
|
+
"name": "timestamp";
|
|
16826
|
+
"type": "i64";
|
|
16227
16827
|
},
|
|
16228
16828
|
{
|
|
16229
|
-
name: "authority";
|
|
16230
|
-
type: "pubkey";
|
|
16829
|
+
"name": "authority";
|
|
16830
|
+
"type": "pubkey";
|
|
16231
16831
|
},
|
|
16232
16832
|
{
|
|
16233
|
-
name: "socialClaimAuthority";
|
|
16234
|
-
type: "pubkey";
|
|
16833
|
+
"name": "socialClaimAuthority";
|
|
16834
|
+
"type": "pubkey";
|
|
16235
16835
|
},
|
|
16236
16836
|
{
|
|
16237
|
-
name: "disableFlags";
|
|
16238
|
-
type: "u8";
|
|
16837
|
+
"name": "disableFlags";
|
|
16838
|
+
"type": "u8";
|
|
16239
16839
|
},
|
|
16240
16840
|
{
|
|
16241
|
-
name: "claimRateLimit";
|
|
16242
|
-
type: "u64";
|
|
16841
|
+
"name": "claimRateLimit";
|
|
16842
|
+
"type": "u64";
|
|
16243
16843
|
}
|
|
16244
16844
|
];
|
|
16245
16845
|
};
|
|
16246
16846
|
},
|
|
16247
16847
|
{
|
|
16248
|
-
name: "pool";
|
|
16249
|
-
type: {
|
|
16250
|
-
kind: "struct";
|
|
16251
|
-
fields: [
|
|
16848
|
+
"name": "pool";
|
|
16849
|
+
"type": {
|
|
16850
|
+
"kind": "struct";
|
|
16851
|
+
"fields": [
|
|
16252
16852
|
{
|
|
16253
|
-
name: "poolBump";
|
|
16254
|
-
type: "u8";
|
|
16853
|
+
"name": "poolBump";
|
|
16854
|
+
"type": "u8";
|
|
16255
16855
|
},
|
|
16256
16856
|
{
|
|
16257
|
-
name: "index";
|
|
16258
|
-
type: "u16";
|
|
16857
|
+
"name": "index";
|
|
16858
|
+
"type": "u16";
|
|
16259
16859
|
},
|
|
16260
16860
|
{
|
|
16261
|
-
name: "creator";
|
|
16262
|
-
type: "pubkey";
|
|
16861
|
+
"name": "creator";
|
|
16862
|
+
"type": "pubkey";
|
|
16263
16863
|
},
|
|
16264
16864
|
{
|
|
16265
|
-
name: "baseMint";
|
|
16266
|
-
type: "pubkey";
|
|
16865
|
+
"name": "baseMint";
|
|
16866
|
+
"type": "pubkey";
|
|
16267
16867
|
},
|
|
16268
16868
|
{
|
|
16269
|
-
name: "quoteMint";
|
|
16270
|
-
type: "pubkey";
|
|
16869
|
+
"name": "quoteMint";
|
|
16870
|
+
"type": "pubkey";
|
|
16271
16871
|
},
|
|
16272
16872
|
{
|
|
16273
|
-
name: "lpMint";
|
|
16274
|
-
type: "pubkey";
|
|
16873
|
+
"name": "lpMint";
|
|
16874
|
+
"type": "pubkey";
|
|
16275
16875
|
},
|
|
16276
|
-
{
|
|
16277
|
-
name: "poolBaseTokenAccount";
|
|
16278
|
-
type: "pubkey";
|
|
16876
|
+
{
|
|
16877
|
+
"name": "poolBaseTokenAccount";
|
|
16878
|
+
"type": "pubkey";
|
|
16279
16879
|
},
|
|
16280
16880
|
{
|
|
16281
|
-
name: "poolQuoteTokenAccount";
|
|
16282
|
-
type: "pubkey";
|
|
16881
|
+
"name": "poolQuoteTokenAccount";
|
|
16882
|
+
"type": "pubkey";
|
|
16283
16883
|
},
|
|
16284
16884
|
{
|
|
16285
|
-
name: "lpSupply";
|
|
16286
|
-
type: "u64";
|
|
16885
|
+
"name": "lpSupply";
|
|
16886
|
+
"type": "u64";
|
|
16287
16887
|
},
|
|
16288
16888
|
{
|
|
16289
|
-
name: "coinCreator";
|
|
16290
|
-
type: "pubkey";
|
|
16889
|
+
"name": "coinCreator";
|
|
16890
|
+
"type": "pubkey";
|
|
16291
16891
|
},
|
|
16292
16892
|
{
|
|
16293
|
-
name: "isMayhemMode";
|
|
16294
|
-
type: "bool";
|
|
16893
|
+
"name": "isMayhemMode";
|
|
16894
|
+
"type": "bool";
|
|
16295
16895
|
}
|
|
16296
16896
|
];
|
|
16297
16897
|
};
|
|
16298
16898
|
},
|
|
16299
16899
|
{
|
|
16300
|
-
name: "resetFeeSharingConfigEvent";
|
|
16301
|
-
type: {
|
|
16302
|
-
kind: "struct";
|
|
16303
|
-
fields: [
|
|
16900
|
+
"name": "resetFeeSharingConfigEvent";
|
|
16901
|
+
"type": {
|
|
16902
|
+
"kind": "struct";
|
|
16903
|
+
"fields": [
|
|
16304
16904
|
{
|
|
16305
|
-
name: "timestamp";
|
|
16306
|
-
type: "i64";
|
|
16905
|
+
"name": "timestamp";
|
|
16906
|
+
"type": "i64";
|
|
16307
16907
|
},
|
|
16308
16908
|
{
|
|
16309
|
-
name: "mint";
|
|
16310
|
-
type: "pubkey";
|
|
16909
|
+
"name": "mint";
|
|
16910
|
+
"type": "pubkey";
|
|
16311
16911
|
},
|
|
16312
16912
|
{
|
|
16313
|
-
name: "sharingConfig";
|
|
16314
|
-
type: "pubkey";
|
|
16913
|
+
"name": "sharingConfig";
|
|
16914
|
+
"type": "pubkey";
|
|
16315
16915
|
},
|
|
16316
16916
|
{
|
|
16317
|
-
name: "oldAdmin";
|
|
16318
|
-
type: "pubkey";
|
|
16917
|
+
"name": "oldAdmin";
|
|
16918
|
+
"type": "pubkey";
|
|
16319
16919
|
},
|
|
16320
16920
|
{
|
|
16321
|
-
name: "oldShareholders";
|
|
16322
|
-
type: {
|
|
16323
|
-
vec: {
|
|
16324
|
-
defined: {
|
|
16325
|
-
name: "shareholder";
|
|
16921
|
+
"name": "oldShareholders";
|
|
16922
|
+
"type": {
|
|
16923
|
+
"vec": {
|
|
16924
|
+
"defined": {
|
|
16925
|
+
"name": "shareholder";
|
|
16326
16926
|
};
|
|
16327
16927
|
};
|
|
16328
16928
|
};
|
|
16329
16929
|
},
|
|
16330
16930
|
{
|
|
16331
|
-
name: "newAdmin";
|
|
16332
|
-
type: "pubkey";
|
|
16931
|
+
"name": "newAdmin";
|
|
16932
|
+
"type": "pubkey";
|
|
16333
16933
|
},
|
|
16334
16934
|
{
|
|
16335
|
-
name: "newShareholders";
|
|
16336
|
-
type: {
|
|
16337
|
-
vec: {
|
|
16338
|
-
defined: {
|
|
16339
|
-
name: "shareholder";
|
|
16935
|
+
"name": "newShareholders";
|
|
16936
|
+
"type": {
|
|
16937
|
+
"vec": {
|
|
16938
|
+
"defined": {
|
|
16939
|
+
"name": "shareholder";
|
|
16340
16940
|
};
|
|
16341
16941
|
};
|
|
16342
16942
|
};
|
|
16343
|
-
}
|
|
16344
|
-
];
|
|
16345
|
-
};
|
|
16346
|
-
},
|
|
16347
|
-
{
|
|
16348
|
-
name: "revokeFeeSharingAuthorityEvent";
|
|
16349
|
-
type: {
|
|
16350
|
-
kind: "struct";
|
|
16351
|
-
fields: [
|
|
16352
|
-
{
|
|
16353
|
-
name: "timestamp";
|
|
16354
|
-
type: "i64";
|
|
16355
16943
|
},
|
|
16356
16944
|
{
|
|
16357
|
-
name: "
|
|
16358
|
-
type: "
|
|
16359
|
-
},
|
|
16360
|
-
{
|
|
16361
|
-
name: "sharingConfig";
|
|
16362
|
-
type: "pubkey";
|
|
16945
|
+
"name": "oldVersion";
|
|
16946
|
+
"type": "u8";
|
|
16363
16947
|
},
|
|
16364
16948
|
{
|
|
16365
|
-
name: "
|
|
16366
|
-
type: "
|
|
16949
|
+
"name": "newVersion";
|
|
16950
|
+
"type": "u8";
|
|
16367
16951
|
}
|
|
16368
16952
|
];
|
|
16369
16953
|
};
|
|
16370
16954
|
},
|
|
16371
16955
|
{
|
|
16372
|
-
name: "setAuthorityEvent";
|
|
16373
|
-
type: {
|
|
16374
|
-
kind: "struct";
|
|
16375
|
-
fields: [
|
|
16956
|
+
"name": "setAuthorityEvent";
|
|
16957
|
+
"type": {
|
|
16958
|
+
"kind": "struct";
|
|
16959
|
+
"fields": [
|
|
16376
16960
|
{
|
|
16377
|
-
name: "timestamp";
|
|
16378
|
-
type: "i64";
|
|
16961
|
+
"name": "timestamp";
|
|
16962
|
+
"type": "i64";
|
|
16379
16963
|
},
|
|
16380
16964
|
{
|
|
16381
|
-
name: "oldAuthority";
|
|
16382
|
-
type: "pubkey";
|
|
16965
|
+
"name": "oldAuthority";
|
|
16966
|
+
"type": "pubkey";
|
|
16383
16967
|
},
|
|
16384
16968
|
{
|
|
16385
|
-
name: "newAuthority";
|
|
16386
|
-
type: "pubkey";
|
|
16969
|
+
"name": "newAuthority";
|
|
16970
|
+
"type": "pubkey";
|
|
16387
16971
|
}
|
|
16388
16972
|
];
|
|
16389
16973
|
};
|
|
16390
16974
|
},
|
|
16391
16975
|
{
|
|
16392
|
-
name: "setClaimRateLimitEvent";
|
|
16393
|
-
type: {
|
|
16394
|
-
kind: "struct";
|
|
16395
|
-
fields: [
|
|
16976
|
+
"name": "setClaimRateLimitEvent";
|
|
16977
|
+
"type": {
|
|
16978
|
+
"kind": "struct";
|
|
16979
|
+
"fields": [
|
|
16396
16980
|
{
|
|
16397
|
-
name: "timestamp";
|
|
16398
|
-
type: "i64";
|
|
16981
|
+
"name": "timestamp";
|
|
16982
|
+
"type": "i64";
|
|
16399
16983
|
},
|
|
16400
16984
|
{
|
|
16401
|
-
name: "claimRateLimit";
|
|
16402
|
-
type: "u64";
|
|
16985
|
+
"name": "claimRateLimit";
|
|
16986
|
+
"type": "u64";
|
|
16403
16987
|
}
|
|
16404
16988
|
];
|
|
16405
16989
|
};
|
|
16406
16990
|
},
|
|
16407
16991
|
{
|
|
16408
|
-
name: "setDisableFlagsEvent";
|
|
16409
|
-
type: {
|
|
16410
|
-
kind: "struct";
|
|
16411
|
-
fields: [
|
|
16992
|
+
"name": "setDisableFlagsEvent";
|
|
16993
|
+
"type": {
|
|
16994
|
+
"kind": "struct";
|
|
16995
|
+
"fields": [
|
|
16412
16996
|
{
|
|
16413
|
-
name: "timestamp";
|
|
16414
|
-
type: "i64";
|
|
16997
|
+
"name": "timestamp";
|
|
16998
|
+
"type": "i64";
|
|
16415
16999
|
},
|
|
16416
17000
|
{
|
|
16417
|
-
name: "disableFlags";
|
|
16418
|
-
type: "u8";
|
|
17001
|
+
"name": "disableFlags";
|
|
17002
|
+
"type": "u8";
|
|
16419
17003
|
}
|
|
16420
17004
|
];
|
|
16421
17005
|
};
|
|
16422
17006
|
},
|
|
16423
17007
|
{
|
|
16424
|
-
name: "setSocialClaimAuthorityEvent";
|
|
16425
|
-
type: {
|
|
16426
|
-
kind: "struct";
|
|
16427
|
-
fields: [
|
|
17008
|
+
"name": "setSocialClaimAuthorityEvent";
|
|
17009
|
+
"type": {
|
|
17010
|
+
"kind": "struct";
|
|
17011
|
+
"fields": [
|
|
16428
17012
|
{
|
|
16429
|
-
name: "timestamp";
|
|
16430
|
-
type: "i64";
|
|
17013
|
+
"name": "timestamp";
|
|
17014
|
+
"type": "i64";
|
|
16431
17015
|
},
|
|
16432
17016
|
{
|
|
16433
|
-
name: "socialClaimAuthority";
|
|
16434
|
-
type: "pubkey";
|
|
17017
|
+
"name": "socialClaimAuthority";
|
|
17018
|
+
"type": "pubkey";
|
|
16435
17019
|
}
|
|
16436
17020
|
];
|
|
16437
17021
|
};
|
|
16438
17022
|
},
|
|
16439
17023
|
{
|
|
16440
|
-
name: "shareholder";
|
|
16441
|
-
type: {
|
|
16442
|
-
kind: "struct";
|
|
16443
|
-
fields: [
|
|
17024
|
+
"name": "shareholder";
|
|
17025
|
+
"type": {
|
|
17026
|
+
"kind": "struct";
|
|
17027
|
+
"fields": [
|
|
16444
17028
|
{
|
|
16445
|
-
name: "address";
|
|
16446
|
-
type: "pubkey";
|
|
17029
|
+
"name": "address";
|
|
17030
|
+
"type": "pubkey";
|
|
16447
17031
|
},
|
|
16448
17032
|
{
|
|
16449
|
-
name: "shareBps";
|
|
16450
|
-
type: "u16";
|
|
17033
|
+
"name": "shareBps";
|
|
17034
|
+
"type": "u16";
|
|
16451
17035
|
}
|
|
16452
17036
|
];
|
|
16453
17037
|
};
|
|
16454
17038
|
},
|
|
16455
17039
|
{
|
|
16456
|
-
name: "sharingConfig";
|
|
16457
|
-
type: {
|
|
16458
|
-
kind: "struct";
|
|
16459
|
-
fields: [
|
|
17040
|
+
"name": "sharingConfig";
|
|
17041
|
+
"type": {
|
|
17042
|
+
"kind": "struct";
|
|
17043
|
+
"fields": [
|
|
16460
17044
|
{
|
|
16461
|
-
name: "bump";
|
|
16462
|
-
type: "u8";
|
|
17045
|
+
"name": "bump";
|
|
17046
|
+
"type": "u8";
|
|
16463
17047
|
},
|
|
16464
17048
|
{
|
|
16465
|
-
name: "version";
|
|
16466
|
-
type: "u8";
|
|
17049
|
+
"name": "version";
|
|
17050
|
+
"type": "u8";
|
|
16467
17051
|
},
|
|
16468
17052
|
{
|
|
16469
|
-
name: "status";
|
|
16470
|
-
type: {
|
|
16471
|
-
defined: {
|
|
16472
|
-
name: "configStatus";
|
|
17053
|
+
"name": "status";
|
|
17054
|
+
"type": {
|
|
17055
|
+
"defined": {
|
|
17056
|
+
"name": "configStatus";
|
|
16473
17057
|
};
|
|
16474
17058
|
};
|
|
16475
17059
|
},
|
|
16476
17060
|
{
|
|
16477
|
-
name: "mint";
|
|
16478
|
-
type: "pubkey";
|
|
17061
|
+
"name": "mint";
|
|
17062
|
+
"type": "pubkey";
|
|
16479
17063
|
},
|
|
16480
17064
|
{
|
|
16481
|
-
name: "admin";
|
|
16482
|
-
type: "pubkey";
|
|
17065
|
+
"name": "admin";
|
|
17066
|
+
"type": "pubkey";
|
|
16483
17067
|
},
|
|
16484
17068
|
{
|
|
16485
|
-
name: "adminRevoked";
|
|
16486
|
-
type: "bool";
|
|
17069
|
+
"name": "adminRevoked";
|
|
17070
|
+
"type": "bool";
|
|
16487
17071
|
},
|
|
16488
17072
|
{
|
|
16489
|
-
name: "shareholders";
|
|
16490
|
-
type: {
|
|
16491
|
-
vec: {
|
|
16492
|
-
defined: {
|
|
16493
|
-
name: "shareholder";
|
|
17073
|
+
"name": "shareholders";
|
|
17074
|
+
"type": {
|
|
17075
|
+
"vec": {
|
|
17076
|
+
"defined": {
|
|
17077
|
+
"name": "shareholder";
|
|
16494
17078
|
};
|
|
16495
17079
|
};
|
|
16496
17080
|
};
|
|
@@ -16499,208 +17083,185 @@ interface PumpFees {
|
|
|
16499
17083
|
};
|
|
16500
17084
|
},
|
|
16501
17085
|
{
|
|
16502
|
-
name: "socialFeePda";
|
|
16503
|
-
docs: [
|
|
16504
|
-
|
|
16505
|
-
|
|
16506
|
-
|
|
17086
|
+
"name": "socialFeePda";
|
|
17087
|
+
"docs": [
|
|
17088
|
+
"Platform identifier: 0=pump, 1=twitter, etc."
|
|
17089
|
+
];
|
|
17090
|
+
"type": {
|
|
17091
|
+
"kind": "struct";
|
|
17092
|
+
"fields": [
|
|
16507
17093
|
{
|
|
16508
|
-
name: "bump";
|
|
16509
|
-
type: "u8";
|
|
17094
|
+
"name": "bump";
|
|
17095
|
+
"type": "u8";
|
|
16510
17096
|
},
|
|
16511
17097
|
{
|
|
16512
|
-
name: "version";
|
|
16513
|
-
type: "u8";
|
|
17098
|
+
"name": "version";
|
|
17099
|
+
"type": "u8";
|
|
16514
17100
|
},
|
|
16515
17101
|
{
|
|
16516
|
-
name: "userId";
|
|
16517
|
-
docs: [
|
|
17102
|
+
"name": "userId";
|
|
17103
|
+
"docs": [
|
|
16518
17104
|
"Max 20 characters to fit u64::MAX (18,446,744,073,709,551,615) as a string.",
|
|
16519
17105
|
"Actual storage: 4 bytes (length prefix) + 20 bytes (content) = 24 bytes."
|
|
16520
17106
|
];
|
|
16521
|
-
type: "string";
|
|
17107
|
+
"type": "string";
|
|
16522
17108
|
},
|
|
16523
17109
|
{
|
|
16524
|
-
name: "platform";
|
|
16525
|
-
type: "u8";
|
|
17110
|
+
"name": "platform";
|
|
17111
|
+
"type": "u8";
|
|
16526
17112
|
},
|
|
16527
17113
|
{
|
|
16528
|
-
name: "totalClaimed";
|
|
16529
|
-
type: "u64";
|
|
17114
|
+
"name": "totalClaimed";
|
|
17115
|
+
"type": "u64";
|
|
16530
17116
|
},
|
|
16531
17117
|
{
|
|
16532
|
-
name: "lastClaimed";
|
|
16533
|
-
type: "u64";
|
|
17118
|
+
"name": "lastClaimed";
|
|
17119
|
+
"type": "u64";
|
|
16534
17120
|
},
|
|
16535
17121
|
{
|
|
16536
|
-
name: "reserved";
|
|
16537
|
-
type: {
|
|
16538
|
-
array: [
|
|
17122
|
+
"name": "reserved";
|
|
17123
|
+
"type": {
|
|
17124
|
+
"array": [
|
|
17125
|
+
"u8",
|
|
17126
|
+
128
|
|
17127
|
+
];
|
|
16539
17128
|
};
|
|
16540
17129
|
}
|
|
16541
17130
|
];
|
|
16542
17131
|
};
|
|
16543
17132
|
},
|
|
16544
17133
|
{
|
|
16545
|
-
name: "socialFeePdaClaimed";
|
|
16546
|
-
type: {
|
|
16547
|
-
kind: "struct";
|
|
16548
|
-
fields: [
|
|
16549
|
-
{
|
|
16550
|
-
name: "timestamp";
|
|
16551
|
-
type: "i64";
|
|
16552
|
-
},
|
|
16553
|
-
{
|
|
16554
|
-
name: "userId";
|
|
16555
|
-
type: "string";
|
|
16556
|
-
},
|
|
16557
|
-
{
|
|
16558
|
-
name: "platform";
|
|
16559
|
-
type: "u8";
|
|
16560
|
-
},
|
|
16561
|
-
{
|
|
16562
|
-
name: "socialFeePda";
|
|
16563
|
-
type: "pubkey";
|
|
16564
|
-
},
|
|
17134
|
+
"name": "socialFeePdaClaimed";
|
|
17135
|
+
"type": {
|
|
17136
|
+
"kind": "struct";
|
|
17137
|
+
"fields": [
|
|
16565
17138
|
{
|
|
16566
|
-
name: "
|
|
16567
|
-
type: "
|
|
17139
|
+
"name": "timestamp";
|
|
17140
|
+
"type": "i64";
|
|
16568
17141
|
},
|
|
16569
17142
|
{
|
|
16570
|
-
name: "
|
|
16571
|
-
type: "
|
|
17143
|
+
"name": "userId";
|
|
17144
|
+
"type": "string";
|
|
16572
17145
|
},
|
|
16573
17146
|
{
|
|
16574
|
-
name: "
|
|
16575
|
-
type: "
|
|
17147
|
+
"name": "platform";
|
|
17148
|
+
"type": "u8";
|
|
16576
17149
|
},
|
|
16577
17150
|
{
|
|
16578
|
-
name: "
|
|
16579
|
-
type: "
|
|
17151
|
+
"name": "socialFeePda";
|
|
17152
|
+
"type": "pubkey";
|
|
16580
17153
|
},
|
|
16581
17154
|
{
|
|
16582
|
-
name: "
|
|
16583
|
-
type: "
|
|
17155
|
+
"name": "recipient";
|
|
17156
|
+
"type": "pubkey";
|
|
16584
17157
|
},
|
|
16585
17158
|
{
|
|
16586
|
-
name: "
|
|
16587
|
-
type: "
|
|
17159
|
+
"name": "socialClaimAuthority";
|
|
17160
|
+
"type": "pubkey";
|
|
16588
17161
|
},
|
|
16589
17162
|
{
|
|
16590
|
-
name: "
|
|
16591
|
-
type: "u64";
|
|
16592
|
-
}
|
|
16593
|
-
];
|
|
16594
|
-
};
|
|
16595
|
-
},
|
|
16596
|
-
{
|
|
16597
|
-
name: "socialFeePdaCreated";
|
|
16598
|
-
type: {
|
|
16599
|
-
kind: "struct";
|
|
16600
|
-
fields: [
|
|
16601
|
-
{
|
|
16602
|
-
name: "timestamp";
|
|
16603
|
-
type: "i64";
|
|
17163
|
+
"name": "amountClaimed";
|
|
17164
|
+
"type": "u64";
|
|
16604
17165
|
},
|
|
16605
17166
|
{
|
|
16606
|
-
name: "
|
|
16607
|
-
type: "
|
|
17167
|
+
"name": "claimableBefore";
|
|
17168
|
+
"type": "u64";
|
|
16608
17169
|
},
|
|
16609
17170
|
{
|
|
16610
|
-
name: "
|
|
16611
|
-
type: "
|
|
17171
|
+
"name": "lifetimeClaimed";
|
|
17172
|
+
"type": "u64";
|
|
16612
17173
|
},
|
|
16613
17174
|
{
|
|
16614
|
-
name: "
|
|
16615
|
-
type: "
|
|
17175
|
+
"name": "recipientBalanceBefore";
|
|
17176
|
+
"type": "u64";
|
|
16616
17177
|
},
|
|
16617
17178
|
{
|
|
16618
|
-
name: "
|
|
16619
|
-
type: "
|
|
17179
|
+
"name": "recipientBalanceAfter";
|
|
17180
|
+
"type": "u64";
|
|
16620
17181
|
}
|
|
16621
17182
|
];
|
|
16622
17183
|
};
|
|
16623
17184
|
},
|
|
16624
17185
|
{
|
|
16625
|
-
name: "
|
|
16626
|
-
type: {
|
|
16627
|
-
kind: "struct";
|
|
16628
|
-
fields: [
|
|
17186
|
+
"name": "socialFeePdaCreated";
|
|
17187
|
+
"type": {
|
|
17188
|
+
"kind": "struct";
|
|
17189
|
+
"fields": [
|
|
16629
17190
|
{
|
|
16630
|
-
name: "timestamp";
|
|
16631
|
-
type: "i64";
|
|
17191
|
+
"name": "timestamp";
|
|
17192
|
+
"type": "i64";
|
|
16632
17193
|
},
|
|
16633
17194
|
{
|
|
16634
|
-
name: "
|
|
16635
|
-
type: "
|
|
17195
|
+
"name": "userId";
|
|
17196
|
+
"type": "string";
|
|
16636
17197
|
},
|
|
16637
17198
|
{
|
|
16638
|
-
name: "
|
|
16639
|
-
type: "
|
|
17199
|
+
"name": "platform";
|
|
17200
|
+
"type": "u8";
|
|
16640
17201
|
},
|
|
16641
17202
|
{
|
|
16642
|
-
name: "
|
|
16643
|
-
type: "pubkey";
|
|
17203
|
+
"name": "socialFeePda";
|
|
17204
|
+
"type": "pubkey";
|
|
16644
17205
|
},
|
|
16645
17206
|
{
|
|
16646
|
-
name: "
|
|
16647
|
-
type: "pubkey";
|
|
17207
|
+
"name": "createdBy";
|
|
17208
|
+
"type": "pubkey";
|
|
16648
17209
|
}
|
|
16649
17210
|
];
|
|
16650
17211
|
};
|
|
16651
17212
|
},
|
|
16652
17213
|
{
|
|
16653
|
-
name: "updateAdminEvent";
|
|
16654
|
-
type: {
|
|
16655
|
-
kind: "struct";
|
|
16656
|
-
fields: [
|
|
17214
|
+
"name": "updateAdminEvent";
|
|
17215
|
+
"type": {
|
|
17216
|
+
"kind": "struct";
|
|
17217
|
+
"fields": [
|
|
16657
17218
|
{
|
|
16658
|
-
name: "timestamp";
|
|
16659
|
-
type: "i64";
|
|
17219
|
+
"name": "timestamp";
|
|
17220
|
+
"type": "i64";
|
|
16660
17221
|
},
|
|
16661
17222
|
{
|
|
16662
|
-
name: "oldAdmin";
|
|
16663
|
-
type: "pubkey";
|
|
17223
|
+
"name": "oldAdmin";
|
|
17224
|
+
"type": "pubkey";
|
|
16664
17225
|
},
|
|
16665
17226
|
{
|
|
16666
|
-
name: "newAdmin";
|
|
16667
|
-
type: "pubkey";
|
|
17227
|
+
"name": "newAdmin";
|
|
17228
|
+
"type": "pubkey";
|
|
16668
17229
|
}
|
|
16669
17230
|
];
|
|
16670
17231
|
};
|
|
16671
17232
|
},
|
|
16672
17233
|
{
|
|
16673
|
-
name: "updateFeeConfigEvent";
|
|
16674
|
-
type: {
|
|
16675
|
-
kind: "struct";
|
|
16676
|
-
fields: [
|
|
17234
|
+
"name": "updateFeeConfigEvent";
|
|
17235
|
+
"type": {
|
|
17236
|
+
"kind": "struct";
|
|
17237
|
+
"fields": [
|
|
16677
17238
|
{
|
|
16678
|
-
name: "timestamp";
|
|
16679
|
-
type: "i64";
|
|
17239
|
+
"name": "timestamp";
|
|
17240
|
+
"type": "i64";
|
|
16680
17241
|
},
|
|
16681
17242
|
{
|
|
16682
|
-
name: "admin";
|
|
16683
|
-
type: "pubkey";
|
|
17243
|
+
"name": "admin";
|
|
17244
|
+
"type": "pubkey";
|
|
16684
17245
|
},
|
|
16685
17246
|
{
|
|
16686
|
-
name: "feeConfig";
|
|
16687
|
-
type: "pubkey";
|
|
17247
|
+
"name": "feeConfig";
|
|
17248
|
+
"type": "pubkey";
|
|
16688
17249
|
},
|
|
16689
17250
|
{
|
|
16690
|
-
name: "feeTiers";
|
|
16691
|
-
type: {
|
|
16692
|
-
vec: {
|
|
16693
|
-
defined: {
|
|
16694
|
-
name: "feeTier";
|
|
17251
|
+
"name": "feeTiers";
|
|
17252
|
+
"type": {
|
|
17253
|
+
"vec": {
|
|
17254
|
+
"defined": {
|
|
17255
|
+
"name": "feeTier";
|
|
16695
17256
|
};
|
|
16696
17257
|
};
|
|
16697
17258
|
};
|
|
16698
17259
|
},
|
|
16699
17260
|
{
|
|
16700
|
-
name: "flatFees";
|
|
16701
|
-
type: {
|
|
16702
|
-
defined: {
|
|
16703
|
-
name: "fees";
|
|
17261
|
+
"name": "flatFees";
|
|
17262
|
+
"type": {
|
|
17263
|
+
"defined": {
|
|
17264
|
+
"name": "fees";
|
|
16704
17265
|
};
|
|
16705
17266
|
};
|
|
16706
17267
|
}
|
|
@@ -16708,111 +17269,149 @@ interface PumpFees {
|
|
|
16708
17269
|
};
|
|
16709
17270
|
},
|
|
16710
17271
|
{
|
|
16711
|
-
name: "updateFeeSharesEvent";
|
|
16712
|
-
type: {
|
|
16713
|
-
kind: "struct";
|
|
16714
|
-
fields: [
|
|
17272
|
+
"name": "updateFeeSharesEvent";
|
|
17273
|
+
"type": {
|
|
17274
|
+
"kind": "struct";
|
|
17275
|
+
"fields": [
|
|
16715
17276
|
{
|
|
16716
|
-
name: "timestamp";
|
|
16717
|
-
type: "i64";
|
|
17277
|
+
"name": "timestamp";
|
|
17278
|
+
"type": "i64";
|
|
16718
17279
|
},
|
|
16719
17280
|
{
|
|
16720
|
-
name: "mint";
|
|
16721
|
-
type: "pubkey";
|
|
17281
|
+
"name": "mint";
|
|
17282
|
+
"type": "pubkey";
|
|
16722
17283
|
},
|
|
16723
17284
|
{
|
|
16724
|
-
name: "sharingConfig";
|
|
16725
|
-
type: "pubkey";
|
|
17285
|
+
"name": "sharingConfig";
|
|
17286
|
+
"type": "pubkey";
|
|
16726
17287
|
},
|
|
16727
17288
|
{
|
|
16728
|
-
name: "admin";
|
|
16729
|
-
type: "pubkey";
|
|
17289
|
+
"name": "admin";
|
|
17290
|
+
"type": "pubkey";
|
|
16730
17291
|
},
|
|
16731
17292
|
{
|
|
16732
|
-
name: "newShareholders";
|
|
16733
|
-
type: {
|
|
16734
|
-
vec: {
|
|
16735
|
-
defined: {
|
|
16736
|
-
name: "shareholder";
|
|
17293
|
+
"name": "newShareholders";
|
|
17294
|
+
"type": {
|
|
17295
|
+
"vec": {
|
|
17296
|
+
"defined": {
|
|
17297
|
+
"name": "shareholder";
|
|
16737
17298
|
};
|
|
16738
17299
|
};
|
|
16739
17300
|
};
|
|
17301
|
+
},
|
|
17302
|
+
{
|
|
17303
|
+
"name": "version";
|
|
17304
|
+
"type": "u8";
|
|
16740
17305
|
}
|
|
16741
17306
|
];
|
|
16742
17307
|
};
|
|
16743
17308
|
},
|
|
16744
17309
|
{
|
|
16745
|
-
name: "upsertFeeTiersEvent";
|
|
16746
|
-
type: {
|
|
16747
|
-
kind: "struct";
|
|
16748
|
-
fields: [
|
|
17310
|
+
"name": "upsertFeeTiersEvent";
|
|
17311
|
+
"type": {
|
|
17312
|
+
"kind": "struct";
|
|
17313
|
+
"fields": [
|
|
16749
17314
|
{
|
|
16750
|
-
name: "timestamp";
|
|
16751
|
-
type: "i64";
|
|
17315
|
+
"name": "timestamp";
|
|
17316
|
+
"type": "i64";
|
|
16752
17317
|
},
|
|
16753
17318
|
{
|
|
16754
|
-
name: "admin";
|
|
16755
|
-
type: "pubkey";
|
|
17319
|
+
"name": "admin";
|
|
17320
|
+
"type": "pubkey";
|
|
16756
17321
|
},
|
|
16757
17322
|
{
|
|
16758
|
-
name: "feeConfig";
|
|
16759
|
-
type: "pubkey";
|
|
17323
|
+
"name": "feeConfig";
|
|
17324
|
+
"type": "pubkey";
|
|
16760
17325
|
},
|
|
16761
17326
|
{
|
|
16762
|
-
name: "feeTiers";
|
|
16763
|
-
type: {
|
|
16764
|
-
vec: {
|
|
16765
|
-
defined: {
|
|
16766
|
-
name: "feeTier";
|
|
17327
|
+
"name": "feeTiers";
|
|
17328
|
+
"type": {
|
|
17329
|
+
"vec": {
|
|
17330
|
+
"defined": {
|
|
17331
|
+
"name": "feeTier";
|
|
16767
17332
|
};
|
|
16768
17333
|
};
|
|
16769
17334
|
};
|
|
16770
17335
|
},
|
|
16771
17336
|
{
|
|
16772
|
-
name: "offset";
|
|
16773
|
-
type: "u8";
|
|
17337
|
+
"name": "offset";
|
|
17338
|
+
"type": "u8";
|
|
16774
17339
|
}
|
|
16775
17340
|
];
|
|
16776
17341
|
};
|
|
16777
17342
|
}
|
|
16778
17343
|
];
|
|
16779
|
-
constants: [
|
|
17344
|
+
"constants": [
|
|
17345
|
+
{
|
|
17346
|
+
"name": "ammCreatorVaultAuthoritySeed";
|
|
17347
|
+
"type": {
|
|
17348
|
+
"array": [
|
|
17349
|
+
"u8",
|
|
17350
|
+
13
|
|
17351
|
+
];
|
|
17352
|
+
};
|
|
17353
|
+
"value": "[99, 114, 101, 97, 116, 111, 114, 95, 118, 97, 117, 108, 116]";
|
|
17354
|
+
},
|
|
16780
17355
|
{
|
|
16781
|
-
name: "feeConfigSeed";
|
|
16782
|
-
type: "bytes";
|
|
16783
|
-
value: "[102, 101, 101, 95, 99, 111, 110, 102, 105, 103]";
|
|
17356
|
+
"name": "feeConfigSeed";
|
|
17357
|
+
"type": "bytes";
|
|
17358
|
+
"value": "[102, 101, 101, 95, 99, 111, 110, 102, 105, 103]";
|
|
16784
17359
|
},
|
|
16785
17360
|
{
|
|
16786
|
-
name: "feeProgramGlobalSeed";
|
|
16787
|
-
type: {
|
|
16788
|
-
array: [
|
|
17361
|
+
"name": "feeProgramGlobalSeed";
|
|
17362
|
+
"type": {
|
|
17363
|
+
"array": [
|
|
17364
|
+
"u8",
|
|
17365
|
+
18
|
|
17366
|
+
];
|
|
16789
17367
|
};
|
|
16790
|
-
value: "[102, 101, 101, 45, 112, 114, 111, 103, 114, 97, 109, 45, 103, 108, 111, 98, 97, 108]";
|
|
17368
|
+
"value": "[102, 101, 101, 45, 112, 114, 111, 103, 114, 97, 109, 45, 103, 108, 111, 98, 97, 108]";
|
|
16791
17369
|
},
|
|
16792
17370
|
{
|
|
16793
|
-
name: "
|
|
16794
|
-
|
|
16795
|
-
|
|
16796
|
-
|
|
17371
|
+
"name": "pumpCreatorVaultSeed";
|
|
17372
|
+
"type": {
|
|
17373
|
+
"array": [
|
|
17374
|
+
"u8",
|
|
17375
|
+
13
|
|
17376
|
+
];
|
|
16797
17377
|
};
|
|
16798
|
-
value: "[
|
|
17378
|
+
"value": "[99, 114, 101, 97, 116, 111, 114, 45, 118, 97, 117, 108, 116]";
|
|
16799
17379
|
},
|
|
16800
17380
|
{
|
|
16801
|
-
name: "
|
|
16802
|
-
|
|
16803
|
-
|
|
17381
|
+
"name": "pumpGlobalSeed";
|
|
17382
|
+
"docs": [
|
|
17383
|
+
"Bonding Curve Program Global Seed"
|
|
17384
|
+
];
|
|
17385
|
+
"type": {
|
|
17386
|
+
"array": [
|
|
17387
|
+
"u8",
|
|
17388
|
+
6
|
|
17389
|
+
];
|
|
16804
17390
|
};
|
|
16805
|
-
value: "[
|
|
17391
|
+
"value": "[103, 108, 111, 98, 97, 108]";
|
|
16806
17392
|
},
|
|
16807
17393
|
{
|
|
16808
|
-
name: "
|
|
16809
|
-
type: {
|
|
16810
|
-
array: [
|
|
17394
|
+
"name": "sharingConfigSeed";
|
|
17395
|
+
"type": {
|
|
17396
|
+
"array": [
|
|
17397
|
+
"u8",
|
|
17398
|
+
14
|
|
17399
|
+
];
|
|
17400
|
+
};
|
|
17401
|
+
"value": "[115, 104, 97, 114, 105, 110, 103, 45, 99, 111, 110, 102, 105, 103]";
|
|
17402
|
+
},
|
|
17403
|
+
{
|
|
17404
|
+
"name": "socialFeePdaSeed";
|
|
17405
|
+
"type": {
|
|
17406
|
+
"array": [
|
|
17407
|
+
"u8",
|
|
17408
|
+
14
|
|
17409
|
+
];
|
|
16811
17410
|
};
|
|
16812
|
-
value: "[115, 111, 99, 105, 97, 108, 45, 102, 101, 101, 45, 112, 100, 97]";
|
|
17411
|
+
"value": "[115, 111, 99, 105, 97, 108, 45, 102, 101, 101, 45, 112, 100, 97]";
|
|
16813
17412
|
}
|
|
16814
17413
|
];
|
|
16815
|
-
}
|
|
17414
|
+
};
|
|
16816
17415
|
|
|
16817
17416
|
/**
|
|
16818
17417
|
* Platform identifiers for social handle mappings.
|
|
@@ -22753,7 +23352,10 @@ declare class PumpSdk {
|
|
|
22753
23352
|
/**
|
|
22754
23353
|
* Updates the fee shares for a token's creator fee distribution.
|
|
22755
23354
|
*
|
|
22756
|
-
*
|
|
23355
|
+
* Important:
|
|
23356
|
+
* - Reward split updates are effectively one-time. Treat this as a single allowed
|
|
23357
|
+
* modification and verify the final split before submitting.
|
|
23358
|
+
*
|
|
22757
23359
|
* @param params.authority - The current authority that can modify the fee sharing config
|
|
22758
23360
|
* @param params.mint - The mint address of the token
|
|
22759
23361
|
* @param params.curShareholders - Array of current shareholders
|
|
@@ -22837,6 +23439,10 @@ declare class PumpSdk {
|
|
|
22837
23439
|
* Wrapper around `updateSharingConfig` that resolves social recipients and
|
|
22838
23440
|
* initializes any missing social recipient PDAs before updating fee shares.
|
|
22839
23441
|
*
|
|
23442
|
+
* Important:
|
|
23443
|
+
* - Reward split updates are effectively one-time. Treat this call as a single
|
|
23444
|
+
* allowed modification and verify the final split before submitting.
|
|
23445
|
+
*
|
|
22840
23446
|
* Requirements:
|
|
22841
23447
|
* - `authority` must sign the transaction.
|
|
22842
23448
|
*
|
|
@@ -22926,6 +23532,20 @@ declare function isCreatorUsingSharingConfig({ mint, creator, }: {
|
|
|
22926
23532
|
mint: PublicKey;
|
|
22927
23533
|
creator: PublicKey;
|
|
22928
23534
|
}): boolean;
|
|
23535
|
+
/**
|
|
23536
|
+
* Checks whether a sharing config reward split is editable.
|
|
23537
|
+
*
|
|
23538
|
+
* Reward split is NOT editable when:
|
|
23539
|
+
* - sharing config version is 1
|
|
23540
|
+
* - sharing config version is 2 but the admin authority has been revoked
|
|
23541
|
+
*
|
|
23542
|
+
* @param params - Parameters for editability check
|
|
23543
|
+
* @param params.sharingConfig - Sharing config account state
|
|
23544
|
+
* @returns true if reward split can be edited, false otherwise
|
|
23545
|
+
*/
|
|
23546
|
+
declare function isSharingConfigEditable({ sharingConfig, }: {
|
|
23547
|
+
sharingConfig: SharingConfig;
|
|
23548
|
+
}): boolean;
|
|
22929
23549
|
|
|
22930
23550
|
declare class OnlinePumpSdk {
|
|
22931
23551
|
private readonly connection;
|
|
@@ -23031,4 +23651,4 @@ declare class PoolRequiredForGraduatedError extends Error {
|
|
|
23031
23651
|
constructor();
|
|
23032
23652
|
}
|
|
23033
23653
|
|
|
23034
|
-
export { AMM_GLOBAL_PDA, AMM_GLOBAL_VOLUME_ACCUMULATOR_PDA, BONDING_CURVE_NEW_SIZE, type BondingCurve, CANONICAL_POOL_INDEX, type DistributeCreatorFeeResult, type DistributeCreatorFeesEvent, DuplicateShareholderError, type FeeConfig, GLOBAL_PDA, GLOBAL_VOLUME_ACCUMULATOR_PDA, type Global, type GlobalVolumeAccumulator, InvalidShareTotalError, MAYHEM_PROGRAM_ID, type MinimumDistributableFeeEvent, type MinimumDistributableFeeResult, NoShareholdersError, OnlinePumpSdk, PUMP_AMM_EVENT_AUTHORITY_PDA, PUMP_AMM_PROGRAM_ID, PUMP_EVENT_AUTHORITY_PDA, PUMP_FEE_CONFIG_PDA, PUMP_FEE_EVENT_AUTHORITY_PDA, PUMP_FEE_PROGRAM_ID, PUMP_PROGRAM_ID, PUMP_SDK, Platform, PoolRequiredForGraduatedError, type Pump, type PumpFees, PumpSdk, SUPPORTED_SOCIAL_PLATFORMS, ShareCalculationOverflowError, type Shareholder, type SharingConfig, TooManyShareholdersError, type UserVolumeAccumulator, type UserVolumeAccumulatorTotalStats, ZeroShareError, ammCreatorVaultPda, bondingCurveMarketCap, bondingCurvePda, bondingCurveV2Pda, canonicalPumpPoolPda, creatorVaultPda, currentDayTokens, feeSharingConfigPda, getBuySolAmountFromTokenAmount, getBuyTokenAmountFromSolAmount, getEventAuthorityPda, getGlobalParamsPda, getMayhemStatePda, getPumpAmmProgram, getPumpFeeProgram, getPumpProgram, getSellSolAmountFromTokenAmount, getSolVaultPda, getTokenVaultPda, isCreatorUsingSharingConfig, newBondingCurve, platformToString, pump as pumpIdl, pumpPoolAuthorityPda, socialFeePda, stringToPlatform, totalUnclaimedTokens, userVolumeAccumulatorPda };
|
|
23654
|
+
export { AMM_GLOBAL_PDA, AMM_GLOBAL_VOLUME_ACCUMULATOR_PDA, BONDING_CURVE_NEW_SIZE, type BondingCurve, CANONICAL_POOL_INDEX, type DistributeCreatorFeeResult, type DistributeCreatorFeesEvent, DuplicateShareholderError, type FeeConfig, GLOBAL_PDA, GLOBAL_VOLUME_ACCUMULATOR_PDA, type Global, type GlobalVolumeAccumulator, InvalidShareTotalError, MAYHEM_PROGRAM_ID, type MinimumDistributableFeeEvent, type MinimumDistributableFeeResult, NoShareholdersError, OnlinePumpSdk, PUMP_AMM_EVENT_AUTHORITY_PDA, PUMP_AMM_PROGRAM_ID, PUMP_EVENT_AUTHORITY_PDA, PUMP_FEE_CONFIG_PDA, PUMP_FEE_EVENT_AUTHORITY_PDA, PUMP_FEE_PROGRAM_ID, PUMP_PROGRAM_ID, PUMP_SDK, Platform, PoolRequiredForGraduatedError, type Pump, type PumpFees, PumpSdk, SUPPORTED_SOCIAL_PLATFORMS, ShareCalculationOverflowError, type Shareholder, type SharingConfig, TooManyShareholdersError, type UserVolumeAccumulator, type UserVolumeAccumulatorTotalStats, ZeroShareError, ammCreatorVaultPda, bondingCurveMarketCap, bondingCurvePda, bondingCurveV2Pda, canonicalPumpPoolPda, creatorVaultPda, currentDayTokens, feeSharingConfigPda, getBuySolAmountFromTokenAmount, getBuyTokenAmountFromSolAmount, getEventAuthorityPda, getGlobalParamsPda, getMayhemStatePda, getPumpAmmProgram, getPumpFeeProgram, getPumpProgram, getSellSolAmountFromTokenAmount, getSolVaultPda, getTokenVaultPda, isCreatorUsingSharingConfig, isSharingConfigEditable, newBondingCurve, platformToString, pump as pumpIdl, pumpPoolAuthorityPda, socialFeePda, stringToPlatform, totalUnclaimedTokens, userVolumeAccumulatorPda };
|