-
Notifications
You must be signed in to change notification settings - Fork 19
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
CollabAI implementation #3030
CollabAI implementation #3030
Conversation
pub const MinimumGuardianDeposit: Balance = 20 * DOLLARS; | ||
// Declare the official AIUSDAssetId | ||
pub const AIUSDAssetId: u128 = 1000; | ||
pub OfficialGapPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 10 * MINUTES, "ROCOCO_OFFICIALGAPPERIOD"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should change the name from ROCOCO
to Paseo
. There are two more below.
Besides, for non-prod, is 10*MINUTES
the best choice? is there any concern to run non-prod env faster?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually the rococo name is still remained everywhere, not only brought in by the collabAI part code. I will raise another PR to replace the name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the offficial gap period is the time between a pool proposal mature and an official investing pool begin accounting.
In reality, it should be equal to the approximate time of GPU data center setup.
In testing mode, any timeframe will work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
TBA