All entry functions can only be executed by addresses that are in ModuleStore.deployers
.
Set initial stage
public entry fun set_init_stage(deployer: &signer, stage: u64)
Finalize stage. Once stage finalized, can't change score of that stage anymore.
public entry fun finalize_script(deployer: &signer, stage: u64)
Update several scores.
public entry fun update_score_script(
deployer: &signer,
stage: u64,
addrs: vector<address>,
update_scores: vector<u64>
)
Add new address to ModuleStore.deployer
public entry fun add_deployer_script(
publisher: &signer, deployer: address
)
Remove address from ModuleStore.deployer
public entry fun remove_deployer_script(
publisher: &signer, deployer: address
)
All public functions can only be executed by addresses that are in ModuleStore.deployers
.
Increase score.
public fun increase_score(
deployer: &signer,
account: address,
stage: u64,
amount: u64
)
Decrease score.
public fun decrease_score(
deployer: &signer,
account: address,
stage: u64,
amount: u64
)
Update score.
public fun update_score(
deployer: &signer,
account: address,
stage: u64,
amount: u64
)
Get score of given address and stage
public fun get_score(account: address, stage: u64): u64
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 stage info
public fun get_total_score(stage: u64): u64