Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] computeStorageDeposit #8

Open
wireless90 opened this issue Nov 27, 2023 · 0 comments · Fixed by #41
Open

[Feat] computeStorageDeposit #8

wireless90 opened this issue Nov 27, 2023 · 0 comments · Fixed by #41
Assignees
Labels
enhancement New feature or request Utils Utils methods

Comments

@wireless90
Copy link
Contributor

    /**
     * Compute the required storage deposit of an output.
     *
     * @param output The output.
     * @param rent Rent cost of objects which take node resources.
     * @returns The required storage deposit.
     */
    static computeStorageDeposit(output: Output, rent: IRent): bigint {
        const minStorageDepositAmount = callUtilsMethod({
            name: 'computeStorageDeposit',
            data: {
                output,
                rent,
            },
        });
        return BigInt(minStorageDepositAmount);
    }
@wireless90 wireless90 added the enhancement New feature or request label Nov 27, 2023
@wireless90 wireless90 self-assigned this Nov 27, 2023
@wireless90 wireless90 added the Utils Utils methods label Nov 27, 2023
@wireless90 wireless90 linked a pull request Dec 6, 2023 that will close this issue
@wireless90 wireless90 reopened this Dec 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Utils Utils methods
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant