Guillermo Bescos Alapont před 2 roky
rodič
revize
0fb1ed75be

+ 8 - 10
xc-admin/packages/xc-admin-common/src/governance_payload/index.ts

@@ -13,17 +13,11 @@ export interface PythGovernanceAction {
   encode(): Buffer;
 }
 
-/** Magic number */
-export const MAGIC_NUMBER = 0x4d475450;
-
-export const MODULE_EXECUTOR = 0;
 /** Each of the actions that can be directed to the Executor Module */
 export const ExecutorAction = {
   ExecutePostedVaa: 0,
 } as const;
 
-/** Each of the actions that can be directed to the Target Module */
-export const MODULE_TARGET = 1;
 export const TargetAction = {
   UpgradeContract: 0,
   AuthorizeGovernanceDataSourceTransfer: 1,
@@ -33,10 +27,6 @@ export const TargetAction = {
   RequestGovernanceDataSourceTransfer: 5,
 } as const;
 
-export declare type ActionName =
-  | keyof typeof ExecutorAction
-  | keyof typeof TargetAction;
-
 /** Helper to get the ActionName from a (moduleId, actionId) tuple*/
 export function toActionName(
   deserialized: Readonly<{ moduleId: number; actionId: number }>
@@ -62,6 +52,10 @@ export function toActionName(
   throw new Error("Invalid header, action doesn't match module");
 }
 
+export declare type ActionName =
+  | keyof typeof ExecutorAction
+  | keyof typeof TargetAction;
+
 /** Governance header that should be in every Pyth crosschain governance message*/
 export class PythGovernanceHeader {
   readonly targetChainId: ChainName;
@@ -135,6 +129,10 @@ export class PythGovernanceHeader {
   }
 }
 
+export const MAGIC_NUMBER = 0x4d475450;
+export const MODULE_EXECUTOR = 0;
+export const MODULE_TARGET = 1;
+
 /** Decode a governance payload */
 export function decodeGovernancePayload(data: Buffer): PythGovernanceAction {
   const header = PythGovernanceHeader.decode(data);