1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
use anchor_lang::prelude::*;
use anchor_spl::{
associated_token::AssociatedToken,
token::{Mint, Token, TokenAccount},
};
use borsh::{BorshDeserialize, BorshSerialize};
declare_id!("96XymQipCZuhyqWinnw4kDJGFuxeYKTSp7PTd9cGAzge");
#[program]
pub mod streamflow_sdk {
use super::*;
#[allow(unused_variables)]
pub fn create(
ctx: Context<Create>,
start_time: u64,
net_amount_deposited: u64,
period: u64,
amount_per_period: u64,
cliff: u64,
cliff_amount: u64,
cancelable_by_sender: bool,
cancelable_by_recipient: bool,
automatic_withdrawal: bool,
transferable_by_sender: bool,
transferable_by_recipient: bool,
can_topup: bool,
stream_name: [u8; 64],
withdraw_frequency: u64,
) -> ProgramResult {
Ok(())
}
#[allow(unused_variables)]
pub fn withdraw(ctx: Context<Withdraw>, amount: u64) -> ProgramResult {
Ok(())
}
#[allow(unused_variables)]
pub fn cancel(ctx: Context<Cancel>) -> ProgramResult {
Ok(())
}
#[allow(unused_variables)]
pub fn transfer_recipient(ctx: Context<Transfer>) -> ProgramResult {
Ok(())
}
#[allow(unused_variables)]
pub fn topup(ctx: Context<Topup>, amount: u64) -> ProgramResult {
Ok(())
}
}
#[derive(Accounts)]
pub struct Create<'info> {
#[account(mut)]
pub sender: Signer<'info>,
#[account(mut)]
pub sender_tokens: AccountInfo<'info>,
#[account(mut)]
pub recipient: AccountInfo<'info>,
#[account(mut, signer)]
pub metadata: AccountInfo<'info>,
#[account(mut)]
pub escrow_tokens: AccountInfo<'info>,
#[account(mut)]
pub recipient_tokens: AccountInfo<'info>,
#[account(mut)]
pub streamflow_treasury: AccountInfo<'info>,
#[account(mut)]
pub streamflow_treasury_tokens: AccountInfo<'info>,
#[account(mut)]
pub withdrawor: AccountInfo<'info>,
#[account(mut)]
pub partner: AccountInfo<'info>,
#[account(mut)]
pub partner_tokens: AccountInfo<'info>,
pub mint: Account<'info, Mint>,
pub fee_oracle: AccountInfo<'info>,
pub rent: Sysvar<'info, Rent>,
pub timelock_program: AccountInfo<'info>,
pub token_program: Program<'info, Token>,
pub associated_token_program: Program<'info, AssociatedToken>,
pub system_program: Program<'info, System>,
}
#[derive(Accounts)]
pub struct Withdraw<'info> {
#[account()]
pub authority: Signer<'info>,
#[account(mut)]
pub recipient: AccountInfo<'info>,
#[account(mut)]
pub recipient_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub metadata: AccountInfo<'info>,
#[account(mut)]
pub escrow_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub streamflow_treasury: AccountInfo<'info>,
#[account(mut)]
pub streamflow_treasury_tokens: AccountInfo<'info>,
#[account(mut)]
pub partner: AccountInfo<'info>,
#[account(mut)]
pub partner_tokens: AccountInfo<'info>,
pub mint: Account<'info, Mint>,
pub token_program: Program<'info, Token>,
}
#[derive(Accounts)]
pub struct Cancel<'info> {
#[account()]
pub authority: Signer<'info>,
#[account(mut)]
pub sender: AccountInfo<'info>,
#[account(mut)]
pub sender_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub recipient: AccountInfo<'info>,
#[account(mut)]
pub recipient_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub metadata: AccountInfo<'info>,
#[account(mut)]
pub escrow_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub streamflow_treasury: AccountInfo<'info>,
#[account(mut)]
pub streamflow_treasury_tokens: AccountInfo<'info>,
#[account(mut)]
pub partner: AccountInfo<'info>,
#[account(mut)]
pub partner_tokens: AccountInfo<'info>,
pub mint: Account<'info, Mint>,
pub token_program: Program<'info, Token>,
}
#[derive(Accounts)]
pub struct Transfer<'info> {
#[account(mut)]
pub authority: Signer<'info>,
#[account(mut)]
pub new_recipient: AccountInfo<'info>,
#[account(mut)]
pub new_recipient_tokens: AccountInfo<'info>,
#[account(mut)]
pub metadata: AccountInfo<'info>,
pub mint: Account<'info, Mint>,
pub rent: Sysvar<'info, Rent>,
pub token_program: Program<'info, Token>,
pub associated_token_program: Program<'info, AssociatedToken>,
pub system_program: Program<'info, System>,
}
#[derive(Accounts)]
pub struct Topup<'info> {
#[account(mut)]
pub sender: Signer<'info>,
#[account(mut)]
pub sender_tokens: AccountInfo<'info>,
#[account(mut)]
pub metadata: AccountInfo<'info>,
#[account(mut)]
pub escrow_tokens: Account<'info, TokenAccount>,
#[account(mut)]
pub streamflow_treasury: AccountInfo<'info>,
#[account(mut)]
pub streamflow_treasury_tokens: AccountInfo<'info>,
#[account(mut)]
pub withdrawor: AccountInfo<'info>,
#[account(mut)]
pub partner: AccountInfo<'info>,
#[account(mut)]
pub partner_tokens: AccountInfo<'info>,
pub mint: Account<'info, Mint>,
pub token_program: Program<'info, Token>,
pub system_program: Program<'info, System>,
}
#[derive(BorshDeserialize, BorshSerialize, Clone, Debug)]
#[repr(C)]
pub struct CreateParams {
pub start_time: u64,
pub net_amount_deposited: u64,
pub period: u64,
pub amount_per_period: u64,
pub cliff: u64,
pub cliff_amount: u64,
pub cancelable_by_sender: bool,
pub cancelable_by_recipient: bool,
pub automatic_withdrawal: bool,
pub transferable_by_sender: bool,
pub transferable_by_recipient: bool,
pub can_topup: bool,
pub stream_name: [u8; 64],
pub withdraw_frequency: u64,
}