Skip to content

initia-labs/vip-score-move

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

VIP Score

Entry Functions

All entry functions can only be executed by addresses that are in ModuleStore.deployers.

set_init_stage

Set initial stage

public entry fun set_init_stage(deployer: &signer, stage: u64)

finalize_script

Finalize stage. Once stage finalized, can't change score of that stage anymore.

public entry fun finalize_script(deployer: &signer, stage: u64)

update_score_script

Update several scores.

public entry fun update_score_script(
    deployer: &signer,
    stage: u64,
    addrs: vector<address>,
    update_scores: vector<u64>
)

add_deployer_script

Add new address to ModuleStore.deployer

public entry fun add_deployer_script(
    publisher: &signer, deployer: address
)

remove_deployer_script

Remove address from ModuleStore.deployer

public entry fun remove_deployer_script(
    publisher: &signer, deployer: address
)

Public Functions

All public functions can only be executed by addresses that are in ModuleStore.deployers.

increase_score

Increase score.

public fun increase_score(
    deployer: &signer,
    account: address,
    stage: u64,
    amount: u64
)

decrease_score

Decrease score.

public fun decrease_score(
    deployer: &signer,
    account: address,
    stage: u64,
    amount: u64
)

update_score

Update score.

public fun update_score(
    deployer: &signer,
    account: address,
    stage: u64,
    amount: u64
)

View Functions

get_score

Get score of given address and stage

public fun get_score(account: address, stage: u64): u64

get_scores

Get scores of given stage

public fun get_scores(
    // The stage number
    stage: u64,
    // Number of results to return (Max: 1000)
    limit: u16,
    // Pagination key. If None, start from the beginning.
    // If provided, return results after this key in descending order.
    // Use the last returned address to fetch the next page.
    start_after: Option<address>
): GetScoresResponse

Response type

struct GetScoresResponse {
    stage: u64,
    scores: vector<Score>
}

get_total_score

Get stage info

public fun get_total_score(stage: u64): u64

About

move contract for vip scoring

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages