feat: implement auto-pump mechanism to prevent pool drainage
This commit is contained in:
parent
d9f2836fb9
commit
b8de80d8a9
8 changed files with 1727 additions and 29 deletions
4
website/drizzle/0003_adorable_leper_queen.sql
Normal file
4
website/drizzle/0003_adorable_leper_queen.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE "coin" ADD COLUMN "pump_fee_rate" numeric(10, 8) DEFAULT '0.00500000' NOT NULL;--> statement-breakpoint
|
||||
ALTER TABLE "coin" ADD COLUMN "burn_rate" numeric(10, 8) DEFAULT '0.00100000' NOT NULL;--> statement-breakpoint
|
||||
ALTER TABLE "transaction" ADD COLUMN "pump_fee_applied" numeric(30, 8) DEFAULT '0.00000000';--> statement-breakpoint
|
||||
ALTER TABLE "transaction" ADD COLUMN "tokens_burned" numeric(30, 8) DEFAULT '0.00000000';
|
||||
1587
website/drizzle/meta/0003_snapshot.json
Normal file
1587
website/drizzle/meta/0003_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -22,6 +22,13 @@
|
|||
"when": 1748700252762,
|
||||
"tag": "0002_lush_guardian",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 3,
|
||||
"version": "7",
|
||||
"when": 1748710560443,
|
||||
"tag": "0003_adorable_leper_queen",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in a new issue