forked from flowerpowerdao/power-equalizer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinitArgs.local.did
32 lines (32 loc) · 1.13 KB
/
initArgs.local.did
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(
principal "rrkah-fqaaa-aaaaa-aaaaq-cai", // staging canister
record {
name = "Collection Name";
sale = variant { supply = 3 };
salePrices = vec {
record {
ledger = principal "ryjl3-tyaaa-aaaaa-aaaba-cai";
price = 700_000_000; // 7 ICP
};
record {
ledger = principal "fua74-fyaaa-aaaan-qecrq-cai";
price = 1100_000_000; // 11 SEED
limit = opt 2;
};
};
publicSaleStart = 1686117482129000000;
salesDistribution = vec {};
royalties = vec {};
marketplaces = vec {
// first marketplace is default
record { "entrepot"; "ccfe146bb249b6c59e8c5ae71a1b59ddf85d9f9034611427b696f8b25d7b826a"; 500 }; // total payout 1% (0.5% to seller marketplace, 0.5% to buyer marketplace)
};
// How long to delay assets shuffling and reveal (starting after 'publicSaleStart')
// variant { none } - assets will be revealed immediately and assets shuffling will be disabled
revealDelay = variant { minutes = 1 };
// revealDelay = variant { none };
timersInterval = opt variant { seconds = 10 };
airdrop = vec {};
whitelists = vec {};
}
)