FreezeSolPaymentRouteArgsUnlockFunds: {
    candyGuardAuthority: Signer;
    destination: PublicKey<string>;
    path: "unlockFunds";
}

The unlockFunds path transfers all of the escrow funds to the configured destination address once all NFTs have been thawed.

route(umi, {
// ...
guard: 'freezeSolPayment',
routeArgs: {
path: 'unlockFunds',
destination,
candyGuardAuthority,
},
});

Type declaration

  • candyGuardAuthority: Signer

    The authority of the Candy Guard as a Signer.

  • destination: PublicKey<string>
  • path: "unlockFunds"

    Selects the path to execute in the route instruction.

Generated using TypeDoc