@pump-fun/pump-sdk 1.22.1-devnet.1 → 1.23.0-devnet.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/idl/pump.json CHANGED
@@ -2366,6 +2366,202 @@
2366
2366
  }
2367
2367
  ]
2368
2368
  },
2369
+ {
2370
+ "name": "distribute_creator_fees",
2371
+ "docs": [
2372
+ "Distributes creator fees to shareholders based on their share percentages",
2373
+ "The creator vault needs to have at least the minimum distributable amount to distribute fees",
2374
+ "This can be checked with the get_minimum_distributable_fee instruction"
2375
+ ],
2376
+ "discriminator": [
2377
+ 165,
2378
+ 114,
2379
+ 103,
2380
+ 0,
2381
+ 121,
2382
+ 206,
2383
+ 247,
2384
+ 81
2385
+ ],
2386
+ "accounts": [
2387
+ {
2388
+ "name": "mint",
2389
+ "relations": [
2390
+ "sharing_config"
2391
+ ]
2392
+ },
2393
+ {
2394
+ "name": "bonding_curve",
2395
+ "pda": {
2396
+ "seeds": [
2397
+ {
2398
+ "kind": "const",
2399
+ "value": [
2400
+ 98,
2401
+ 111,
2402
+ 110,
2403
+ 100,
2404
+ 105,
2405
+ 110,
2406
+ 103,
2407
+ 45,
2408
+ 99,
2409
+ 117,
2410
+ 114,
2411
+ 118,
2412
+ 101
2413
+ ]
2414
+ },
2415
+ {
2416
+ "kind": "account",
2417
+ "path": "mint"
2418
+ }
2419
+ ]
2420
+ }
2421
+ },
2422
+ {
2423
+ "name": "sharing_config",
2424
+ "pda": {
2425
+ "seeds": [
2426
+ {
2427
+ "kind": "const",
2428
+ "value": [
2429
+ 115,
2430
+ 104,
2431
+ 97,
2432
+ 114,
2433
+ 105,
2434
+ 110,
2435
+ 103,
2436
+ 45,
2437
+ 99,
2438
+ 111,
2439
+ 110,
2440
+ 102,
2441
+ 105,
2442
+ 103
2443
+ ]
2444
+ },
2445
+ {
2446
+ "kind": "account",
2447
+ "path": "mint"
2448
+ }
2449
+ ],
2450
+ "program": {
2451
+ "kind": "const",
2452
+ "value": [
2453
+ 12,
2454
+ 53,
2455
+ 255,
2456
+ 169,
2457
+ 5,
2458
+ 90,
2459
+ 142,
2460
+ 86,
2461
+ 141,
2462
+ 168,
2463
+ 247,
2464
+ 188,
2465
+ 7,
2466
+ 86,
2467
+ 21,
2468
+ 39,
2469
+ 76,
2470
+ 241,
2471
+ 201,
2472
+ 44,
2473
+ 164,
2474
+ 31,
2475
+ 64,
2476
+ 0,
2477
+ 156,
2478
+ 81,
2479
+ 106,
2480
+ 164,
2481
+ 20,
2482
+ 194,
2483
+ 124,
2484
+ 112
2485
+ ]
2486
+ }
2487
+ }
2488
+ },
2489
+ {
2490
+ "name": "creator_vault",
2491
+ "writable": true,
2492
+ "pda": {
2493
+ "seeds": [
2494
+ {
2495
+ "kind": "const",
2496
+ "value": [
2497
+ 99,
2498
+ 114,
2499
+ 101,
2500
+ 97,
2501
+ 116,
2502
+ 111,
2503
+ 114,
2504
+ 45,
2505
+ 118,
2506
+ 97,
2507
+ 117,
2508
+ 108,
2509
+ 116
2510
+ ]
2511
+ },
2512
+ {
2513
+ "kind": "account",
2514
+ "path": "bonding_curve.creator",
2515
+ "account": "BondingCurve"
2516
+ }
2517
+ ]
2518
+ }
2519
+ },
2520
+ {
2521
+ "name": "system_program",
2522
+ "address": "11111111111111111111111111111111"
2523
+ },
2524
+ {
2525
+ "name": "event_authority",
2526
+ "pda": {
2527
+ "seeds": [
2528
+ {
2529
+ "kind": "const",
2530
+ "value": [
2531
+ 95,
2532
+ 95,
2533
+ 101,
2534
+ 118,
2535
+ 101,
2536
+ 110,
2537
+ 116,
2538
+ 95,
2539
+ 97,
2540
+ 117,
2541
+ 116,
2542
+ 104,
2543
+ 111,
2544
+ 114,
2545
+ 105,
2546
+ 116,
2547
+ 121
2548
+ ]
2549
+ }
2550
+ ]
2551
+ }
2552
+ },
2553
+ {
2554
+ "name": "program",
2555
+ "address": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P"
2556
+ }
2557
+ ],
2558
+ "args": [],
2559
+ "returns": {
2560
+ "defined": {
2561
+ "name": "DistributeCreatorFeesEvent"
2562
+ }
2563
+ }
2564
+ },
2369
2565
  {
2370
2566
  "name": "extend_account",
2371
2567
  "docs": [
@@ -2429,6 +2625,163 @@
2429
2625
  ],
2430
2626
  "args": []
2431
2627
  },
2628
+ {
2629
+ "name": "get_minimum_distributable_fee",
2630
+ "docs": [
2631
+ "Permissionless instruction to check the minimum required fees for distribution",
2632
+ "Returns the minimum required balance from the creator_vault and whether distribution can proceed"
2633
+ ],
2634
+ "discriminator": [
2635
+ 117,
2636
+ 225,
2637
+ 127,
2638
+ 202,
2639
+ 134,
2640
+ 95,
2641
+ 68,
2642
+ 35
2643
+ ],
2644
+ "accounts": [
2645
+ {
2646
+ "name": "mint",
2647
+ "relations": [
2648
+ "sharing_config"
2649
+ ]
2650
+ },
2651
+ {
2652
+ "name": "bonding_curve",
2653
+ "pda": {
2654
+ "seeds": [
2655
+ {
2656
+ "kind": "const",
2657
+ "value": [
2658
+ 98,
2659
+ 111,
2660
+ 110,
2661
+ 100,
2662
+ 105,
2663
+ 110,
2664
+ 103,
2665
+ 45,
2666
+ 99,
2667
+ 117,
2668
+ 114,
2669
+ 118,
2670
+ 101
2671
+ ]
2672
+ },
2673
+ {
2674
+ "kind": "account",
2675
+ "path": "mint"
2676
+ }
2677
+ ]
2678
+ }
2679
+ },
2680
+ {
2681
+ "name": "sharing_config",
2682
+ "pda": {
2683
+ "seeds": [
2684
+ {
2685
+ "kind": "const",
2686
+ "value": [
2687
+ 115,
2688
+ 104,
2689
+ 97,
2690
+ 114,
2691
+ 105,
2692
+ 110,
2693
+ 103,
2694
+ 45,
2695
+ 99,
2696
+ 111,
2697
+ 110,
2698
+ 102,
2699
+ 105,
2700
+ 103
2701
+ ]
2702
+ },
2703
+ {
2704
+ "kind": "account",
2705
+ "path": "mint"
2706
+ }
2707
+ ],
2708
+ "program": {
2709
+ "kind": "const",
2710
+ "value": [
2711
+ 12,
2712
+ 53,
2713
+ 255,
2714
+ 169,
2715
+ 5,
2716
+ 90,
2717
+ 142,
2718
+ 86,
2719
+ 141,
2720
+ 168,
2721
+ 247,
2722
+ 188,
2723
+ 7,
2724
+ 86,
2725
+ 21,
2726
+ 39,
2727
+ 76,
2728
+ 241,
2729
+ 201,
2730
+ 44,
2731
+ 164,
2732
+ 31,
2733
+ 64,
2734
+ 0,
2735
+ 156,
2736
+ 81,
2737
+ 106,
2738
+ 164,
2739
+ 20,
2740
+ 194,
2741
+ 124,
2742
+ 112
2743
+ ]
2744
+ }
2745
+ }
2746
+ },
2747
+ {
2748
+ "name": "creator_vault",
2749
+ "pda": {
2750
+ "seeds": [
2751
+ {
2752
+ "kind": "const",
2753
+ "value": [
2754
+ 99,
2755
+ 114,
2756
+ 101,
2757
+ 97,
2758
+ 116,
2759
+ 111,
2760
+ 114,
2761
+ 45,
2762
+ 118,
2763
+ 97,
2764
+ 117,
2765
+ 108,
2766
+ 116
2767
+ ]
2768
+ },
2769
+ {
2770
+ "kind": "account",
2771
+ "path": "bonding_curve.creator",
2772
+ "account": "BondingCurve"
2773
+ }
2774
+ ]
2775
+ }
2776
+ }
2777
+ ],
2778
+ "args": [],
2779
+ "returns": {
2780
+ "defined": {
2781
+ "name": "MinimumDistributableFeeEvent"
2782
+ }
2783
+ }
2784
+ },
2432
2785
  {
2433
2786
  "name": "init_user_volume_accumulator",
2434
2787
  "discriminator": [
@@ -2989,35 +3342,186 @@
2989
3342
  "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
2990
3343
  },
2991
3344
  {
2992
- "name": "pump_amm_event_authority",
3345
+ "name": "pump_amm_event_authority",
3346
+ "pda": {
3347
+ "seeds": [
3348
+ {
3349
+ "kind": "const",
3350
+ "value": [
3351
+ 95,
3352
+ 95,
3353
+ 101,
3354
+ 118,
3355
+ 101,
3356
+ 110,
3357
+ 116,
3358
+ 95,
3359
+ 97,
3360
+ 117,
3361
+ 116,
3362
+ 104,
3363
+ 111,
3364
+ 114,
3365
+ 105,
3366
+ 116,
3367
+ 121
3368
+ ]
3369
+ }
3370
+ ],
3371
+ "program": {
3372
+ "kind": "account",
3373
+ "path": "pump_amm"
3374
+ }
3375
+ }
3376
+ },
3377
+ {
3378
+ "name": "event_authority",
3379
+ "pda": {
3380
+ "seeds": [
3381
+ {
3382
+ "kind": "const",
3383
+ "value": [
3384
+ 95,
3385
+ 95,
3386
+ 101,
3387
+ 118,
3388
+ 101,
3389
+ 110,
3390
+ 116,
3391
+ 95,
3392
+ 97,
3393
+ 117,
3394
+ 116,
3395
+ 104,
3396
+ 111,
3397
+ 114,
3398
+ 105,
3399
+ 116,
3400
+ 121
3401
+ ]
3402
+ }
3403
+ ]
3404
+ }
3405
+ },
3406
+ {
3407
+ "name": "program"
3408
+ }
3409
+ ],
3410
+ "args": []
3411
+ },
3412
+ {
3413
+ "name": "migrate_bonding_curve_creator",
3414
+ "discriminator": [
3415
+ 87,
3416
+ 124,
3417
+ 52,
3418
+ 191,
3419
+ 52,
3420
+ 38,
3421
+ 214,
3422
+ 232
3423
+ ],
3424
+ "accounts": [
3425
+ {
3426
+ "name": "mint",
3427
+ "relations": [
3428
+ "sharing_config"
3429
+ ]
3430
+ },
3431
+ {
3432
+ "name": "bonding_curve",
3433
+ "writable": true,
3434
+ "pda": {
3435
+ "seeds": [
3436
+ {
3437
+ "kind": "const",
3438
+ "value": [
3439
+ 98,
3440
+ 111,
3441
+ 110,
3442
+ 100,
3443
+ 105,
3444
+ 110,
3445
+ 103,
3446
+ 45,
3447
+ 99,
3448
+ 117,
3449
+ 114,
3450
+ 118,
3451
+ 101
3452
+ ]
3453
+ },
3454
+ {
3455
+ "kind": "account",
3456
+ "path": "mint"
3457
+ }
3458
+ ]
3459
+ }
3460
+ },
3461
+ {
3462
+ "name": "sharing_config",
2993
3463
  "pda": {
2994
3464
  "seeds": [
2995
3465
  {
2996
3466
  "kind": "const",
2997
3467
  "value": [
2998
- 95,
2999
- 95,
3000
- 101,
3001
- 118,
3002
- 101,
3003
- 110,
3004
- 116,
3005
- 95,
3006
- 97,
3007
- 117,
3008
- 116,
3468
+ 115,
3009
3469
  104,
3010
- 111,
3470
+ 97,
3011
3471
  114,
3012
3472
  105,
3013
- 116,
3014
- 121
3473
+ 110,
3474
+ 103,
3475
+ 45,
3476
+ 99,
3477
+ 111,
3478
+ 110,
3479
+ 102,
3480
+ 105,
3481
+ 103
3015
3482
  ]
3483
+ },
3484
+ {
3485
+ "kind": "account",
3486
+ "path": "mint"
3016
3487
  }
3017
3488
  ],
3018
3489
  "program": {
3019
- "kind": "account",
3020
- "path": "pump_amm"
3490
+ "kind": "const",
3491
+ "value": [
3492
+ 12,
3493
+ 53,
3494
+ 255,
3495
+ 169,
3496
+ 5,
3497
+ 90,
3498
+ 142,
3499
+ 86,
3500
+ 141,
3501
+ 168,
3502
+ 247,
3503
+ 188,
3504
+ 7,
3505
+ 86,
3506
+ 21,
3507
+ 39,
3508
+ 76,
3509
+ 241,
3510
+ 201,
3511
+ 44,
3512
+ 164,
3513
+ 31,
3514
+ 64,
3515
+ 0,
3516
+ 156,
3517
+ 81,
3518
+ 106,
3519
+ 164,
3520
+ 20,
3521
+ 194,
3522
+ 124,
3523
+ 112
3524
+ ]
3021
3525
  }
3022
3526
  }
3023
3527
  },
@@ -3548,12 +4052,232 @@
3548
4052
  "name": "program"
3549
4053
  }
3550
4054
  ],
3551
- "args": [
3552
- {
3553
- "name": "creator",
3554
- "type": "pubkey"
3555
- }
3556
- ]
4055
+ "args": [
4056
+ {
4057
+ "name": "creator",
4058
+ "type": "pubkey"
4059
+ }
4060
+ ]
4061
+ },
4062
+ {
4063
+ "name": "set_mayhem_virtual_params",
4064
+ "discriminator": [
4065
+ 61,
4066
+ 169,
4067
+ 188,
4068
+ 191,
4069
+ 153,
4070
+ 149,
4071
+ 42,
4072
+ 97
4073
+ ],
4074
+ "accounts": [
4075
+ {
4076
+ "name": "sol_vault_authority",
4077
+ "writable": true,
4078
+ "signer": true,
4079
+ "pda": {
4080
+ "seeds": [
4081
+ {
4082
+ "kind": "const",
4083
+ "value": [
4084
+ 115,
4085
+ 111,
4086
+ 108,
4087
+ 45,
4088
+ 118,
4089
+ 97,
4090
+ 117,
4091
+ 108,
4092
+ 116
4093
+ ]
4094
+ }
4095
+ ],
4096
+ "program": {
4097
+ "kind": "const",
4098
+ "value": [
4099
+ 5,
4100
+ 42,
4101
+ 229,
4102
+ 215,
4103
+ 167,
4104
+ 218,
4105
+ 167,
4106
+ 36,
4107
+ 166,
4108
+ 234,
4109
+ 176,
4110
+ 167,
4111
+ 41,
4112
+ 84,
4113
+ 145,
4114
+ 133,
4115
+ 90,
4116
+ 212,
4117
+ 160,
4118
+ 103,
4119
+ 22,
4120
+ 96,
4121
+ 103,
4122
+ 76,
4123
+ 78,
4124
+ 3,
4125
+ 69,
4126
+ 89,
4127
+ 128,
4128
+ 61,
4129
+ 101,
4130
+ 163
4131
+ ]
4132
+ }
4133
+ }
4134
+ },
4135
+ {
4136
+ "name": "mayhem_token_vault",
4137
+ "writable": true,
4138
+ "pda": {
4139
+ "seeds": [
4140
+ {
4141
+ "kind": "account",
4142
+ "path": "sol_vault_authority"
4143
+ },
4144
+ {
4145
+ "kind": "account",
4146
+ "path": "token_program"
4147
+ },
4148
+ {
4149
+ "kind": "account",
4150
+ "path": "mint"
4151
+ }
4152
+ ],
4153
+ "program": {
4154
+ "kind": "const",
4155
+ "value": [
4156
+ 140,
4157
+ 151,
4158
+ 37,
4159
+ 143,
4160
+ 78,
4161
+ 36,
4162
+ 137,
4163
+ 241,
4164
+ 187,
4165
+ 61,
4166
+ 16,
4167
+ 41,
4168
+ 20,
4169
+ 142,
4170
+ 13,
4171
+ 131,
4172
+ 11,
4173
+ 90,
4174
+ 19,
4175
+ 153,
4176
+ 218,
4177
+ 255,
4178
+ 16,
4179
+ 132,
4180
+ 4,
4181
+ 142,
4182
+ 123,
4183
+ 216,
4184
+ 219,
4185
+ 233,
4186
+ 248,
4187
+ 89
4188
+ ]
4189
+ }
4190
+ }
4191
+ },
4192
+ {
4193
+ "name": "mint"
4194
+ },
4195
+ {
4196
+ "name": "global",
4197
+ "pda": {
4198
+ "seeds": [
4199
+ {
4200
+ "kind": "const",
4201
+ "value": [
4202
+ 103,
4203
+ 108,
4204
+ 111,
4205
+ 98,
4206
+ 97,
4207
+ 108
4208
+ ]
4209
+ }
4210
+ ]
4211
+ }
4212
+ },
4213
+ {
4214
+ "name": "bonding_curve",
4215
+ "writable": true,
4216
+ "pda": {
4217
+ "seeds": [
4218
+ {
4219
+ "kind": "const",
4220
+ "value": [
4221
+ 98,
4222
+ 111,
4223
+ 110,
4224
+ 100,
4225
+ 105,
4226
+ 110,
4227
+ 103,
4228
+ 45,
4229
+ 99,
4230
+ 117,
4231
+ 114,
4232
+ 118,
4233
+ 101
4234
+ ]
4235
+ },
4236
+ {
4237
+ "kind": "account",
4238
+ "path": "mint"
4239
+ }
4240
+ ]
4241
+ }
4242
+ },
4243
+ {
4244
+ "name": "token_program",
4245
+ "address": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb"
4246
+ },
4247
+ {
4248
+ "name": "event_authority",
4249
+ "pda": {
4250
+ "seeds": [
4251
+ {
4252
+ "kind": "const",
4253
+ "value": [
4254
+ 95,
4255
+ 95,
4256
+ 101,
4257
+ 118,
4258
+ 101,
4259
+ 110,
4260
+ 116,
4261
+ 95,
4262
+ 97,
4263
+ 117,
4264
+ 116,
4265
+ 104,
4266
+ 111,
4267
+ 114,
4268
+ 105,
4269
+ 116,
4270
+ 121
4271
+ ]
4272
+ }
4273
+ ]
4274
+ }
4275
+ },
4276
+ {
4277
+ "name": "program"
4278
+ }
4279
+ ],
4280
+ "args": []
3557
4281
  },
3558
4282
  {
3559
4283
  "name": "set_metaplex_creator",
@@ -4358,6 +5082,19 @@
4358
5082
  255
4359
5083
  ]
4360
5084
  },
5085
+ {
5086
+ "name": "SharingConfig",
5087
+ "discriminator": [
5088
+ 216,
5089
+ 74,
5090
+ 9,
5091
+ 0,
5092
+ 56,
5093
+ 140,
5094
+ 93,
5095
+ 75
5096
+ ]
5097
+ },
4361
5098
  {
4362
5099
  "name": "UserVolumeAccumulator",
4363
5100
  "discriminator": [
@@ -4490,6 +5227,19 @@
4490
5227
  118
4491
5228
  ]
4492
5229
  },
5230
+ {
5231
+ "name": "DistributeCreatorFeesEvent",
5232
+ "discriminator": [
5233
+ 165,
5234
+ 55,
5235
+ 129,
5236
+ 112,
5237
+ 4,
5238
+ 179,
5239
+ 202,
5240
+ 40
5241
+ ]
5242
+ },
4493
5243
  {
4494
5244
  "name": "ExtendAccountEvent",
4495
5245
  "discriminator": [
@@ -4516,6 +5266,32 @@
4516
5266
  216
4517
5267
  ]
4518
5268
  },
5269
+ {
5270
+ "name": "MigrateBondingCurveCreatorEvent",
5271
+ "discriminator": [
5272
+ 155,
5273
+ 167,
5274
+ 104,
5275
+ 220,
5276
+ 213,
5277
+ 108,
5278
+ 243,
5279
+ 3
5280
+ ]
5281
+ },
5282
+ {
5283
+ "name": "MinimumDistributableFeeEvent",
5284
+ "discriminator": [
5285
+ 168,
5286
+ 216,
5287
+ 132,
5288
+ 239,
5289
+ 235,
5290
+ 182,
5291
+ 49,
5292
+ 52
5293
+ ]
5294
+ },
4519
5295
  {
4520
5296
  "name": "ReservedFeeRecipientsEvent",
4521
5297
  "discriminator": [
@@ -4606,6 +5382,19 @@
4606
5382
  207,
4607
5383
  247
4608
5384
  ]
5385
+ },
5386
+ {
5387
+ "name": "UpdateMayhemVirtualParamsEvent",
5388
+ "discriminator": [
5389
+ 117,
5390
+ 123,
5391
+ 228,
5392
+ 182,
5393
+ 161,
5394
+ 168,
5395
+ 220,
5396
+ 214
5397
+ ]
4609
5398
  }
4610
5399
  ],
4611
5400
  "errors": [
@@ -4838,6 +5627,41 @@
4838
5627
  {
4839
5628
  "code": 6048,
4840
5629
  "name": "MayhemModeDisabled"
5630
+ },
5631
+ {
5632
+ "code": 6049,
5633
+ "name": "CreatorMigratedToSharingConfig",
5634
+ "msg": "creator has been migrated to sharing config, use pump_fees::reset_fee_sharing_config instead"
5635
+ },
5636
+ {
5637
+ "code": 6050,
5638
+ "name": "UnableToDistributeCreatorVaultMigratedToSharingConfig",
5639
+ "msg": "creator_vault has been migrated to sharing config, use pump:distribute_creator_fees instead"
5640
+ },
5641
+ {
5642
+ "code": 6051,
5643
+ "name": "SharingConfigNotActive",
5644
+ "msg": "Sharing config is not active"
5645
+ },
5646
+ {
5647
+ "code": 6052,
5648
+ "name": "UnableToDistributeCreatorFeesToExecutableRecipient",
5649
+ "msg": "The recipient account is executable, so it cannot receive lamports, remove it from the team first"
5650
+ },
5651
+ {
5652
+ "code": 6053,
5653
+ "name": "BondingCurveAndSharingConfigCreatorMismatch",
5654
+ "msg": "Bonding curve creator does not match sharing config"
5655
+ },
5656
+ {
5657
+ "code": 6054,
5658
+ "name": "ShareholdersAndRemainingAccountsMismatch",
5659
+ "msg": "Remaining accounts do not match shareholders, make sure to pass exactly the same pubkeys in the same order"
5660
+ },
5661
+ {
5662
+ "code": 6055,
5663
+ "name": "InvalidShareBps",
5664
+ "msg": "Share bps must be greater than 0"
4841
5665
  }
4842
5666
  ],
4843
5667
  "types": [
@@ -5109,6 +5933,20 @@
5109
5933
  ]
5110
5934
  }
5111
5935
  },
5936
+ {
5937
+ "name": "ConfigStatus",
5938
+ "type": {
5939
+ "kind": "enum",
5940
+ "variants": [
5941
+ {
5942
+ "name": "Paused"
5943
+ },
5944
+ {
5945
+ "name": "Active"
5946
+ }
5947
+ ]
5948
+ }
5949
+ },
5112
5950
  {
5113
5951
  "name": "CreateEvent",
5114
5952
  "type": {
@@ -5173,6 +6011,48 @@
5173
6011
  ]
5174
6012
  }
5175
6013
  },
6014
+ {
6015
+ "name": "DistributeCreatorFeesEvent",
6016
+ "type": {
6017
+ "kind": "struct",
6018
+ "fields": [
6019
+ {
6020
+ "name": "timestamp",
6021
+ "type": "i64"
6022
+ },
6023
+ {
6024
+ "name": "mint",
6025
+ "type": "pubkey"
6026
+ },
6027
+ {
6028
+ "name": "bonding_curve",
6029
+ "type": "pubkey"
6030
+ },
6031
+ {
6032
+ "name": "sharing_config",
6033
+ "type": "pubkey"
6034
+ },
6035
+ {
6036
+ "name": "admin",
6037
+ "type": "pubkey"
6038
+ },
6039
+ {
6040
+ "name": "shareholders",
6041
+ "type": {
6042
+ "vec": {
6043
+ "defined": {
6044
+ "name": "Shareholder"
6045
+ }
6046
+ }
6047
+ }
6048
+ },
6049
+ {
6050
+ "name": "distributed",
6051
+ "type": "u64"
6052
+ }
6053
+ ]
6054
+ }
6055
+ },
5176
6056
  {
5177
6057
  "name": "ExtendAccountEvent",
5178
6058
  "type": {
@@ -5441,6 +6321,58 @@
5441
6321
  ]
5442
6322
  }
5443
6323
  },
6324
+ {
6325
+ "name": "MigrateBondingCurveCreatorEvent",
6326
+ "type": {
6327
+ "kind": "struct",
6328
+ "fields": [
6329
+ {
6330
+ "name": "timestamp",
6331
+ "type": "i64"
6332
+ },
6333
+ {
6334
+ "name": "mint",
6335
+ "type": "pubkey"
6336
+ },
6337
+ {
6338
+ "name": "bonding_curve",
6339
+ "type": "pubkey"
6340
+ },
6341
+ {
6342
+ "name": "sharing_config",
6343
+ "type": "pubkey"
6344
+ },
6345
+ {
6346
+ "name": "old_creator",
6347
+ "type": "pubkey"
6348
+ },
6349
+ {
6350
+ "name": "new_creator",
6351
+ "type": "pubkey"
6352
+ }
6353
+ ]
6354
+ }
6355
+ },
6356
+ {
6357
+ "name": "MinimumDistributableFeeEvent",
6358
+ "type": {
6359
+ "kind": "struct",
6360
+ "fields": [
6361
+ {
6362
+ "name": "minimum_required",
6363
+ "type": "u64"
6364
+ },
6365
+ {
6366
+ "name": "distributable_fees",
6367
+ "type": "u64"
6368
+ },
6369
+ {
6370
+ "name": "can_distribute",
6371
+ "type": "bool"
6372
+ }
6373
+ ]
6374
+ }
6375
+ },
5444
6376
  {
5445
6377
  "name": "OptionBool",
5446
6378
  "type": {
@@ -5596,6 +6528,68 @@
5596
6528
  ]
5597
6529
  }
5598
6530
  },
6531
+ {
6532
+ "name": "Shareholder",
6533
+ "type": {
6534
+ "kind": "struct",
6535
+ "fields": [
6536
+ {
6537
+ "name": "address",
6538
+ "type": "pubkey"
6539
+ },
6540
+ {
6541
+ "name": "share_bps",
6542
+ "type": "u16"
6543
+ }
6544
+ ]
6545
+ }
6546
+ },
6547
+ {
6548
+ "name": "SharingConfig",
6549
+ "type": {
6550
+ "kind": "struct",
6551
+ "fields": [
6552
+ {
6553
+ "name": "bump",
6554
+ "type": "u8"
6555
+ },
6556
+ {
6557
+ "name": "version",
6558
+ "type": "u8"
6559
+ },
6560
+ {
6561
+ "name": "status",
6562
+ "type": {
6563
+ "defined": {
6564
+ "name": "ConfigStatus"
6565
+ }
6566
+ }
6567
+ },
6568
+ {
6569
+ "name": "mint",
6570
+ "type": "pubkey"
6571
+ },
6572
+ {
6573
+ "name": "admin",
6574
+ "type": "pubkey"
6575
+ },
6576
+ {
6577
+ "name": "admin_revoked",
6578
+ "type": "bool"
6579
+ },
6580
+ {
6581
+ "name": "shareholders",
6582
+ "type": {
6583
+ "vec": {
6584
+ "defined": {
6585
+ "name": "Shareholder"
6586
+ }
6587
+ }
6588
+ }
6589
+ }
6590
+ ]
6591
+ }
6592
+ },
5599
6593
  {
5600
6594
  "name": "SyncUserVolumeAccumulatorEvent",
5601
6595
  "type": {
@@ -5715,6 +6709,10 @@
5715
6709
  {
5716
6710
  "name": "ix_name",
5717
6711
  "type": "string"
6712
+ },
6713
+ {
6714
+ "name": "mayhem_mode",
6715
+ "type": "bool"
5718
6716
  }
5719
6717
  ]
5720
6718
  }
@@ -5743,6 +6741,46 @@
5743
6741
  ]
5744
6742
  }
5745
6743
  },
6744
+ {
6745
+ "name": "UpdateMayhemVirtualParamsEvent",
6746
+ "type": {
6747
+ "kind": "struct",
6748
+ "fields": [
6749
+ {
6750
+ "name": "timestamp",
6751
+ "type": "i64"
6752
+ },
6753
+ {
6754
+ "name": "mint",
6755
+ "type": "pubkey"
6756
+ },
6757
+ {
6758
+ "name": "virtual_token_reserves",
6759
+ "type": "u64"
6760
+ },
6761
+ {
6762
+ "name": "virtual_sol_reserves",
6763
+ "type": "u64"
6764
+ },
6765
+ {
6766
+ "name": "new_virtual_token_reserves",
6767
+ "type": "u64"
6768
+ },
6769
+ {
6770
+ "name": "new_virtual_sol_reserves",
6771
+ "type": "u64"
6772
+ },
6773
+ {
6774
+ "name": "real_token_reserves",
6775
+ "type": "u64"
6776
+ },
6777
+ {
6778
+ "name": "real_sol_reserves",
6779
+ "type": "u64"
6780
+ }
6781
+ ]
6782
+ }
6783
+ },
5746
6784
  {
5747
6785
  "name": "UserVolumeAccumulator",
5748
6786
  "type": {