Skip to content
Merged
7 changes: 7 additions & 0 deletions governance/xc_admin/packages/xc_admin_common/src/multisig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ import { InstructionAccount, TransactionAccount } from "@sqds/mesh/lib/types";
import BN from "bn.js";
import lodash from "lodash";

/**
* Address of the ops key (same on all networks)
*/
export const OPS_KEY = new PublicKey(
"ACzP6RC98vcBk9oTeAwcH1o5HJvtBzU59b5nqdwc7Cxy"
);

/**
* Find all proposals for vault `vault` using Squads client `squad`
* @param squad Squads client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const AddRemovePublishers = () => {
Object.keys(publisherChanges).forEach((symbol) => {
const { prev, new: newPublisherKeys } = publisherChanges[symbol]
// prev and new are arrays of publisher pubkeys
// check if there are any new publishers by comparing prev and new
// check if there are any new publishers to add by comparing prev and new
const publisherKeysToAdd = newPublisherKeys.filter(
(newPublisher) => !prev.includes(newPublisher)
)
Expand Down
Loading