-
Notifications
You must be signed in to change notification settings - Fork 51
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/675 on chain ouis devaddrs #745
base: develop
Are you sure you want to change the base?
Conversation
* Add admin key support for backfill * Add script and temp endpoint for backfilling * Actually make the devaddrs * log delegates without solAddr * build * dep versions --------- Co-authored-by: Noah Prince <[email protected]>
14ad0e1
to
df3c3eb
Compare
570745a
to
c881e2a
Compare
4a4063d
to
ed679b6
Compare
09696c4
to
2ded775
Compare
idl?: Idl | null, | ||
): Promise<Program<IotRoutingManager>> { | ||
if (!idl) { | ||
idl = await Program.fetchIdl(programId, provider); |
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.
Use the new idl fetching functionality and add the backup IDL for this program
|
||
console.log(`Initializing (${orgIxs.length}) organizations`); | ||
await batchParallelInstructionsWithPriorityFee(provider, orgIxs, { | ||
computeUnitLimit: 500000, |
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.
Can't our functions estimate compute for you to lower overall fees?
#[instruction(args: InitializeSharedMerkleArgsV0)] | ||
pub struct InitializeSharedMerkleV0<'info> { | ||
#[account(mut)] | ||
pub payer: Signer<'info>, |
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.
Let's scope this to the hprod signer. So not just anyone can mess with us when this goes live
No description provided.