diff --git a/js/src/main.ts b/js/src/main.ts index cab9705..79bb836 100644 --- a/js/src/main.ts +++ b/js/src/main.ts @@ -23,7 +23,7 @@ import bs58 from 'bs58'; * The vesting schedule program ID */ export const VESTING_PROGRAM_ID = new PublicKey( - 'AKUgi92CLv6ce4d6MNHZXeKUFU2SbnAzLc77JN63EGBA' + 'HE6bCtjsrra8DRbJnexKoVPSr5dYs57s3cuGHfotiQbq' ); export const TOKEN_MINT = new PublicKey( diff --git a/program/src/processor.rs b/program/src/processor.rs index 550f425..81de3ef 100644 --- a/program/src/processor.rs +++ b/program/src/processor.rs @@ -199,7 +199,7 @@ impl Processor { 0 => { release_time = 0; } - 1800 | 3600 | 5400 | 7200 => { + 7_776_000 | 15_552_000 | 23_328_000 | 31_104_000 => { release_time = clock.unix_timestamp as u64 + schedule.time_delta; } _ => { @@ -435,7 +435,7 @@ impl Processor { } // Withdrawal period is 7 days = 7 * 86400 = 604_800 - schedule.release_time = clock.unix_timestamp as u64 + 1800; + schedule.release_time = clock.unix_timestamp as u64 + 604_800; // Pack the updated schedule back into the account data pack_schedule_into_slice(