@@ -83,15 +83,15 @@ describe("api", async () => {
83
83
let user4StakeConnection : StakeConnection ;
84
84
let user5StakeConnection : StakeConnection ;
85
85
let user6StakeConnection : StakeConnection ;
86
- let user7StakeConnection : StakeConnection ;
86
+ let user8StakeConnection : StakeConnection ;
87
87
88
88
let controller ;
89
89
let owner ;
90
90
let user2 ;
91
91
let user3 ;
92
92
let user4 ;
93
93
let user6 ;
94
- let user7 ;
94
+ let user8 ;
95
95
let delegate ;
96
96
97
97
const confirm = async ( signature : string ) : Promise < string > => {
@@ -171,15 +171,15 @@ describe("api", async () => {
171
171
) ;
172
172
user6 = user6StakeConnection . provider . wallet . publicKey ;
173
173
174
- user7StakeConnection = await newUserStakeConnection (
174
+ user8StakeConnection = await newUserStakeConnection (
175
175
stakeConnection ,
176
176
Keypair . generate ( ) ,
177
177
config ,
178
178
whMintAccount ,
179
179
whMintAuthority ,
180
180
WHTokenBalance . fromString ( "1000" ) ,
181
181
) ;
182
- user7 = user7StakeConnection . provider . wallet . publicKey ;
182
+ user8 = user8StakeConnection . provider . wallet . publicKey ;
183
183
} ) ;
184
184
185
185
it ( "postSignatures" , async ( ) => {
@@ -1174,30 +1174,30 @@ describe("api", async () => {
1174
1174
1175
1175
it ( "should fail to castVote with zeroing out the first checkpoint in new checkpoint account" , async ( ) => {
1176
1176
// filling the checkpoint account to the limit
1177
- for ( let i = 0 ; i < TEST_CHECKPOINTS_ACCOUNT_LIMIT ; i ++ ) {
1177
+ for ( let i = 0 ; i < TEST_CHECKPOINTS_ACCOUNT_LIMIT - 1 ; i ++ ) {
1178
1178
await sleep ( 1000 ) ;
1179
- await user7StakeConnection . delegate (
1180
- user7StakeConnection . userPublicKey ( ) ,
1179
+ await user8StakeConnection . delegate (
1180
+ user8StakeConnection . userPublicKey ( ) ,
1181
1181
WHTokenBalance . fromString ( "5" ) ,
1182
1182
) ;
1183
1183
}
1184
1184
1185
- let user7StakeAccountMetadataAddress =
1186
- await user7StakeConnection . getStakeMetadataAddress (
1187
- user7StakeConnection . userPublicKey ( ) ,
1185
+ let user8StakeAccountMetadataAddress =
1186
+ await user8StakeConnection . getStakeMetadataAddress (
1187
+ user8StakeConnection . userPublicKey ( ) ,
1188
1188
) ;
1189
- let previousUser7StakeAccountCheckpointsAddress =
1190
- await user7StakeConnection . getStakeAccountCheckpointsAddressByMetadata (
1191
- user7StakeAccountMetadataAddress ,
1192
- true ,
1189
+ let previousUser8StakeAccountCheckpointsAddress =
1190
+ await user8StakeConnection . getStakeAccountCheckpointsAddressByMetadata (
1191
+ user8StakeAccountMetadataAddress ,
1192
+ false ,
1193
1193
) ;
1194
- let user7StakeAccountCheckpointsAddress = PublicKey . findProgramAddressSync (
1194
+ let user8StakeAccountCheckpointsAddress = PublicKey . findProgramAddressSync (
1195
1195
[
1196
1196
utils . bytes . utf8 . encode ( wasm . Constants . CHECKPOINT_DATA_SEED ( ) ) ,
1197
- user7StakeConnection . userPublicKey ( ) . toBuffer ( ) ,
1197
+ user8StakeConnection . userPublicKey ( ) . toBuffer ( ) ,
1198
1198
Buffer . from ( [ 1 ] ) ,
1199
1199
] ,
1200
- user7StakeConnection . program . programId ,
1200
+ user8StakeConnection . program . programId ,
1201
1201
) [ 0 ] ;
1202
1202
1203
1203
let user6StakeAccountMetadataAddress =
@@ -1210,55 +1210,77 @@ describe("api", async () => {
1210
1210
false ,
1211
1211
) ;
1212
1212
1213
+ await sleep ( 2000 ) ;
1213
1214
const instructions : TransactionInstruction [ ] = [ ] ;
1214
1215
instructions . push (
1215
- await user7StakeConnection . program . methods
1216
+ await user8StakeConnection . buildTransferInstruction (
1217
+ user8StakeConnection . userPublicKey ( ) ,
1218
+ WHTokenBalance . fromString ( "5" ) . toBN ( ) ,
1219
+ ) ,
1220
+ ) ;
1221
+ instructions . push (
1222
+ await user8StakeConnection . program . methods
1223
+ . delegate ( user8StakeConnection . userPublicKey ( ) , user8StakeConnection . userPublicKey ( ) )
1224
+ . accountsPartial ( {
1225
+ currentDelegateStakeAccountCheckpoints :
1226
+ previousUser8StakeAccountCheckpointsAddress ,
1227
+ delegateeStakeAccountCheckpoints :
1228
+ previousUser8StakeAccountCheckpointsAddress ,
1229
+ vestingConfig : null ,
1230
+ vestingBalance : null ,
1231
+ mint : user8StakeConnection . config . votingTokenMint ,
1232
+ } )
1233
+ . instruction ( ) ,
1234
+ ) ;
1235
+ instructions . push (
1236
+ await user8StakeConnection . program . methods
1216
1237
. createCheckpoints ( )
1217
1238
. accounts ( {
1218
- payer : user7StakeConnection . userPublicKey ( ) ,
1219
- stakeAccountCheckpoints : previousUser7StakeAccountCheckpointsAddress ,
1220
- stakeAccountMetadata : user7StakeAccountMetadataAddress ,
1239
+ payer : user8StakeConnection . userPublicKey ( ) ,
1240
+ stakeAccountCheckpoints : previousUser8StakeAccountCheckpointsAddress ,
1241
+ newStakeAccountCheckpoints : user8StakeAccountCheckpointsAddress ,
1242
+ stakeAccountMetadata : user8StakeAccountMetadataAddress ,
1221
1243
} )
1222
1244
. instruction ( ) ,
1223
1245
) ;
1224
1246
instructions . push (
1225
- await user7StakeConnection . program . methods
1226
- . delegate ( user6StakeConnection . userPublicKey ( ) , user7StakeConnection . userPublicKey ( ) )
1247
+ await user8StakeConnection . program . methods
1248
+ . delegate ( user6StakeConnection . userPublicKey ( ) , user8StakeConnection . userPublicKey ( ) )
1227
1249
. accountsPartial ( {
1228
1250
currentDelegateStakeAccountCheckpoints :
1229
- user7StakeAccountCheckpointsAddress ,
1251
+ user8StakeAccountCheckpointsAddress ,
1230
1252
delegateeStakeAccountCheckpoints :
1231
1253
user6StakeAccountCheckpointsAddress ,
1232
1254
vestingConfig : null ,
1233
1255
vestingBalance : null ,
1234
- mint : user7StakeConnection . config . votingTokenMint ,
1256
+ mint : user8StakeConnection . config . votingTokenMint ,
1235
1257
} )
1236
1258
. instruction ( ) ,
1237
1259
) ;
1238
- await user7StakeConnection . sendAndConfirmAsVersionedTransaction ( instructions ) ;
1260
+ await user8StakeConnection . sendAndConfirmAsVersionedTransaction ( instructions ) ;
1239
1261
1240
1262
await sleep ( 2000 ) ;
1241
- await user7StakeConnection . delegate (
1242
- user7StakeConnection . userPublicKey ( ) ,
1263
+ await user8StakeConnection . delegate (
1264
+ user8StakeConnection . userPublicKey ( ) ,
1243
1265
WHTokenBalance . fromString ( "150" ) ,
1244
1266
) ;
1245
1267
1246
- let user7StakeAccountCheckpoints : CheckpointAccount =
1247
- await user7StakeConnection . fetchCheckpointAccount (
1248
- user7StakeAccountCheckpointsAddress ,
1268
+ let user8StakeAccountCheckpoints : CheckpointAccount =
1269
+ await user8StakeConnection . fetchCheckpointAccount (
1270
+ user8StakeAccountCheckpointsAddress ,
1249
1271
) ;
1250
- assert . equal ( user7StakeAccountCheckpoints . checkpoints [ 0 ] . value . toString ( ) , "0" ) ;
1251
- assert . equal ( user7StakeAccountCheckpoints . checkpoints [ 1 ] . value . toString ( ) , "225000000" ) ;
1272
+ assert . equal ( user8StakeAccountCheckpoints . checkpoints [ 0 ] . value . toString ( ) , "0" ) ;
1273
+ assert . equal ( user8StakeAccountCheckpoints . checkpoints [ 1 ] . value . toString ( ) , "225000000" ) ;
1252
1274
1253
1275
let proposalIdInput = await addTestProposal (
1254
- user7StakeConnection ,
1276
+ user8StakeConnection ,
1255
1277
Math . floor ( Date . now ( ) / 1000 ) ,
1256
1278
) ;
1257
1279
const { proposalAccount } =
1258
- await user7StakeConnection . fetchProposalAccount ( proposalIdInput ) ;
1280
+ await user8StakeConnection . fetchProposalAccount ( proposalIdInput ) ;
1259
1281
1260
1282
try {
1261
- await user7StakeConnection . program . methods
1283
+ await user8StakeConnection . program . methods
1262
1284
. castVote (
1263
1285
Array . from ( proposalIdInput ) ,
1264
1286
new BN ( 10 ) ,
@@ -1268,8 +1290,8 @@ describe("api", async () => {
1268
1290
)
1269
1291
. accountsPartial ( {
1270
1292
proposal : proposalAccount ,
1271
- voterCheckpoints : previousUser7StakeAccountCheckpointsAddress ,
1272
- voterCheckpointsNext : user7StakeAccountCheckpointsAddress ,
1293
+ voterCheckpoints : previousUser8StakeAccountCheckpointsAddress ,
1294
+ voterCheckpointsNext : user8StakeAccountCheckpointsAddress ,
1273
1295
} )
1274
1296
. rpc ( ) ;
1275
1297
0 commit comments