1
- use borsh:: { BorshDeserialize , BorshSerialize } ;
2
- use solana_program:: { clock:: UnixTimestamp , instruction:: { AccountMeta , Instruction } , program_error:: ProgramError , pubkey:: Pubkey } ;
3
1
use crate :: decimal:: DecimalU64 ;
2
+ use borsh:: { BorshDeserialize , BorshSerialize } ;
3
+ use solana_program:: {
4
+ clock:: UnixTimestamp ,
5
+ instruction:: { AccountMeta , Instruction } ,
6
+ program_error:: ProgramError ,
7
+ pubkey:: Pubkey ,
8
+ } ;
4
9
5
10
type AmountT = u64 ;
6
11
type DecT = DecimalU64 ;
7
12
8
13
#[ derive( BorshSerialize , BorshDeserialize , Debug ) ]
9
14
pub enum PoolInstruction < const TOKEN_COUNT : usize > {
10
- /// Initializes a new pool
15
+ /// Initializes a new pool
11
16
///
12
17
/// Accounts expected by this instruction:
13
18
/// 0. `[w]` The pool state account to initalize
14
- /// 1. `[]` LP Token Mint. Must be empty, owned by authority
19
+ /// 1. `[]` LP Token Mint. Must be empty, owned by authority
15
20
/// authority isn't passed in but programatically derived
16
21
/// 2. ..2 + TOKEN_COUNT `[]` Token mint accounts
17
22
/// 3. ..2 + (2 * TOKEN_COUNT) `[]` Token accounts. Must be empty
18
23
/// 4. ..3 + (2 * TOKEN_COUNT) `[]` Governance account
19
- /// 5. ..4 + (2 * TOKEN_COUNT) `[]` Governance Fee account.
24
+ /// 5. ..4 + (2 * TOKEN_COUNT) `[]` Governance Fee account.
20
25
Init {
21
26
nonce : u8 ,
22
27
amp_factor : DecT ,
23
28
lp_fee : DecT ,
24
29
governance_fee : DecT ,
25
30
} ,
26
- DeFiInstruction ( DeFiInstruction :: < TOKEN_COUNT > ) ,
27
- GovernanceInstruction ( GovernanceInstruction :: < TOKEN_COUNT > )
31
+ DeFiInstruction ( DeFiInstruction < TOKEN_COUNT > ) ,
32
+ GovernanceInstruction ( GovernanceInstruction < TOKEN_COUNT > ) ,
28
33
}
29
34
30
35
/// Creates an `Init` instruction
@@ -46,37 +51,43 @@ pub fn create_init_ix<const TOKEN_COUNT: usize>(
46
51
AccountMeta :: new_readonly( * lp_mint, false ) ,
47
52
] ;
48
53
for i in 0 ..TOKEN_COUNT {
49
- accounts. push (
50
- AccountMeta :: new_readonly ( token_mints[ i] , false )
51
- ) ;
52
- } ;
54
+ accounts. push ( AccountMeta :: new_readonly ( token_mints[ i] , false ) ) ;
55
+ }
53
56
for i in 0 ..TOKEN_COUNT {
54
- accounts. push (
55
- AccountMeta :: new_readonly ( token_accounts[ i] , false )
56
- ) ;
57
- } ;
58
- accounts. push (
59
- AccountMeta :: new_readonly ( * governance_account, false )
60
- ) ;
61
- accounts. push (
62
- AccountMeta :: new_readonly ( * governance_fee_account, false )
63
- ) ;
57
+ accounts. push ( AccountMeta :: new_readonly ( token_accounts[ i] , false ) ) ;
58
+ }
59
+ accounts. push ( AccountMeta :: new_readonly ( * governance_account, false ) ) ;
60
+ accounts. push ( AccountMeta :: new_readonly ( * governance_fee_account, false ) ) ;
64
61
let data = PoolInstruction :: < TOKEN_COUNT > :: Init {
65
62
nonce,
66
63
amp_factor,
67
64
lp_fee,
68
- governance_fee
69
- } . try_to_vec ( ) ?;
65
+ governance_fee,
66
+ }
67
+ . try_to_vec ( ) ?;
70
68
71
69
Ok ( Instruction {
72
70
program_id : * program_id,
73
71
accounts,
74
- data
72
+ data,
75
73
} )
76
74
}
77
75
78
76
#[ derive( BorshSerialize , BorshDeserialize , Debug ) ]
79
77
pub enum DeFiInstruction < const TOKEN_COUNT : usize > {
78
+ /// Adds/Deposits the specified input_amounts and mints
79
+ /// at least `minimum_mint_amount` LP tokens
80
+ ///
81
+ /// Accounts expected by this instruction:
82
+ /// 0. `[w]` The pool state account
83
+ /// 1. `[]` pool authority
84
+ /// 2. ..2 + TOKEN_COUNT `[]` pool's token accounts
85
+ /// 3. ..3 + TOKEN_COUNT `[w]` LP Token Mint
86
+ /// 4. ..4 + TOKEN_COUNT `[]` governance_fee_account
87
+ /// 5. ..5 + TOKEN_COUNT `[s]` user transfer authority account
88
+ /// 6. ..6 + TOKEN_COUNT `[w]` user token accounts
89
+ /// 7. ..6 + (2 * TOKEN_COUNT) `[]` SPL token program account
90
+ /// 8. ..7 + (2 * TOKEN_COUNT) `[w]` user LP token account
80
91
Add {
81
92
input_amounts : [ AmountT ; TOKEN_COUNT ] ,
82
93
minimum_mint_amount : AmountT ,
@@ -103,7 +114,60 @@ pub enum DeFiInstruction<const TOKEN_COUNT: usize> {
103
114
RemoveExactOutput {
104
115
maximum_burn_amount : AmountT ,
105
116
exact_output_amounts : [ AmountT ; TOKEN_COUNT ] ,
117
+ } ,
118
+ }
119
+
120
+ /// Creates an `Add` DefiInstruction
121
+ pub fn create_add_ix < const TOKEN_COUNT : usize > (
122
+ program_id : & Pubkey ,
123
+ pool : & Pubkey ,
124
+ authority : & Pubkey ,
125
+ pool_token_accounts : [ Pubkey ; TOKEN_COUNT ] ,
126
+ lp_mint : & Pubkey ,
127
+ governance_fee_account : & Pubkey ,
128
+ user_transfer_authority : & Pubkey ,
129
+ user_token_accounts : [ Pubkey ; TOKEN_COUNT ] ,
130
+ token_program_account : & Pubkey ,
131
+ user_lp_token_account : & Pubkey ,
132
+ input_amounts : [ AmountT ; TOKEN_COUNT ] ,
133
+ minimum_mint_amount : AmountT ,
134
+ ) -> Result < Instruction , ProgramError > {
135
+ let mut accounts = vec ! [
136
+ AccountMeta :: new_readonly( * pool, false ) ,
137
+ AccountMeta :: new_readonly( * authority, false ) ,
138
+ ] ;
139
+ for i in 0 ..TOKEN_COUNT {
140
+ accounts. push ( AccountMeta :: new ( pool_token_accounts[ i] , false ) ) ;
141
+ }
142
+ accounts. push ( AccountMeta :: new ( * lp_mint, false ) ) ;
143
+ accounts. push ( AccountMeta :: new ( * governance_fee_account, false ) ) ;
144
+
145
+ // used from SPL binary-oracle-pair
146
+ accounts. push ( AccountMeta :: new_readonly (
147
+ * user_transfer_authority,
148
+ authority != user_transfer_authority,
149
+ ) ) ;
150
+ for i in 0 ..TOKEN_COUNT {
151
+ accounts. push ( AccountMeta :: new ( user_token_accounts[ i] , false ) ) ;
106
152
}
153
+ accounts. push ( AccountMeta :: new_readonly ( * token_program_account, false ) ) ;
154
+ accounts. push ( AccountMeta :: new ( * user_lp_token_account, false ) ) ;
155
+
156
+ let d = DeFiInstruction :: < TOKEN_COUNT > :: Add {
157
+ input_amounts,
158
+ minimum_mint_amount,
159
+ } ;
160
+ let data = PoolInstruction :: < TOKEN_COUNT > :: DeFiInstruction ( d) . try_to_vec ( ) ?;
161
+ // let data = PoolInstruction::<TOKEN_COUNT>::DeFiInstruction::DeFiInstruction::<TOKEN_COUNT>::Add {
162
+ // input_amounts,
163
+ // minimum_mint_amount,
164
+ // }.try_to_vec()?;
165
+
166
+ Ok ( Instruction {
167
+ program_id : * program_id,
168
+ accounts,
169
+ data,
170
+ } )
107
171
}
108
172
109
173
#[ derive( BorshSerialize , BorshDeserialize , Debug ) ]
@@ -126,5 +190,5 @@ pub enum GovernanceInstruction<const TOKEN_COUNT: usize> {
126
190
} ,
127
191
SetPaused {
128
192
paused : bool ,
129
- }
130
- }
193
+ } ,
194
+ }
0 commit comments