Skip to content

Commit

Permalink
chore(casper): fix fee
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Dec 1, 2024
1 parent 3751b35 commit 641d277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handlers/casper/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { LOCK_WASM } from "./lock.wasm";
import { Serializer } from "./serializer";
import type { TCasperHandler, TCasperParams } from "./types";

const COLLECTION_DEPLOY_PLUS_CLAIM_AMOUNT = "550000000000";
const COLLECTION_DEPLOY_PLUS_CLAIM_AMOUNT = "600000000000";

export function casperHandler({
rpc,
Expand Down Expand Up @@ -372,7 +372,7 @@ export function casperHandler({
convertHashStrToHashBuff(sourceNft),
),
metadata_arg: CLValueBuilder.string(metadata),
amount: CLValueBuilder.u512(extraArgs?.amount || "110000000000"),
amount: CLValueBuilder.u512(extraArgs?.amount || "150000000000"),
});
const n = new Contracts.Contract(cc);

Expand Down

0 comments on commit 641d277

Please sign in to comment.