1
- export * from "./base" ;
1
+ import { Action } from "@elizaos/core" ;
2
+ import { AuctionActions } from "./auction" ;
3
+ import { AuthActions } from "./auth" ;
4
+ import { BankActions } from "./bank" ;
5
+ import { DistributionActions } from "./distribution" ;
6
+ import { ExchangeActions } from "./exchange" ;
7
+ import { ExplorerActions } from "./explorer" ;
8
+ import { GovActions } from "./gov" ;
9
+ import { IbcActions } from "./ibc" ;
10
+ import { InsuranceActions } from "./insurance" ;
11
+ import { MintActions } from "./mint" ;
12
+ import { MitoActions } from "./mito" ;
13
+ import { PeggyActions } from "./peggy" ;
14
+ import { PermissionsActions } from "./permissions" ;
15
+ import { StakingActions } from "./staking" ;
16
+ import { TokenFactoryActions } from "./token-factory" ;
17
+ import { WasmActions } from "./wasm" ;
18
+
19
+ // Exporting all actions
2
20
export * from "./auction" ;
3
21
export * from "./auth" ;
4
22
export * from "./bank" ;
@@ -15,3 +33,24 @@ export * from "./permissions";
15
33
export * from "./staking" ;
16
34
export * from "./token-factory" ;
17
35
export * from "./wasm" ;
36
+
37
+ export const InjectiveActions : Array < Action > = [
38
+ ...AuctionActions ,
39
+ ...AuthActions ,
40
+ ...BankActions ,
41
+ ...DistributionActions ,
42
+ ...ExchangeActions ,
43
+ ...ExplorerActions ,
44
+ ...GovActions ,
45
+ ...IbcActions ,
46
+ ...InsuranceActions ,
47
+ ...MintActions ,
48
+ ...MitoActions ,
49
+ ...PeggyActions ,
50
+ ...PermissionsActions ,
51
+ ...StakingActions ,
52
+ ...TokenFactoryActions ,
53
+ ...WasmActions ,
54
+ ] ;
55
+
56
+ export default InjectiveActions ;
0 commit comments