@@ -278,22 +278,22 @@ export const resolveImports = async (imports: string[]) => {
278
278
export const deploymentCost = ( program : string ) => {
279
279
let fee = 1 ;
280
280
281
- if ( program . indexOf ( 'multi_token_support ' ) !== - 1 ) {
282
- fee = 76.51 ; // At time of writing, the fee for deploying the multi-token support program is 76501550 microcredits
281
+ if ( program . indexOf ( 'token_registry ' ) !== - 1 ) {
282
+ fee = 75.798350 ; // At time of writing, the fee for deploying the multi-token support program is 75798350 microcredits
283
283
} else if ( program . indexOf ( 'wrapped_credits' ) !== - 1 ) {
284
- fee = 15.88 ; // At time of writing, the fee for deploying the mtsp credits program is 15845775 microcredits
284
+ fee = 15.630250 ; // At time of writing, the fee for deploying the mtsp credits program is 15630250 microcredits
285
285
} else if ( program . indexOf ( 'validator_oracle' ) !== - 1 ) {
286
- fee = 97.168650 ; // At time of writing, the fee for deploying the pondo oracle program is 97158650 microcredits
286
+ fee = 97.375450 ; // At time of writing, the fee for deploying the pondo oracle program is 97375450 microcredits
287
287
} else if ( program . indexOf ( 'paleo_token' ) !== - 1 ) {
288
- fee = 3.999275 ; // At time of writing, the fee for deploying the pondo token program is 3998275 microcredits
288
+ fee = 3.822825 ; // At time of writing, the fee for deploying the pondo token program is 3822825 microcredits
289
289
} else if ( program . indexOf ( 'pondo_protocol_token' ) !== - 1 ) {
290
- fee = 8.886275 ; // At time of writing, the fee for deploying the pondo token program is 8876275 microcredits
290
+ fee = 8.766525 ; // At time of writing, the fee for deploying the pondo token program is 8766525 microcredits
291
+ } else if ( program . indexOf ( 'reference_delegator' ) !== - 1 ) {
292
+ fee = 1 ; // At time of writing, the fee for deploying a reference delegator program is 7872425 microcredits
291
293
} else if ( program . indexOf ( 'delegator' ) !== - 1 ) {
292
- fee = 17.982675 ; // At time of writing, the fee for deploying the pondo delegator program is 17972675 microcredits
294
+ fee = 17.780250 ; // At time of writing, the fee for deploying the pondo delegator program is 17780250 microcredits
293
295
} else if ( program . indexOf ( 'pondo_protocol' ) !== - 1 ) {
294
- fee = 63.669475 ; // At time of writing, the fee for deploying the pondo vault program is 63659475 microcredits
295
- } else if ( program . indexOf ( 'reference_delegator' ) !== - 1 ) {
296
- fee = 7.882425 ; // At time of writing, the fee for deploying a reference delegator program is 7872425 microcredits
296
+ fee = 61.892425 ; // At time of writing, the fee for deploying the pondo vault program is 61892425 microcredits
297
297
} else if ( program . indexOf ( 'grant_disbursement' ) !== - 1 ) {
298
298
fee = 1 ;
299
299
} else if ( program . indexOf ( 'test_program' ) !== - 1 ) {
0 commit comments