File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/automation/src/lib Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ interface ExecuteLitAction {
2323 authSigner : ethers . Wallet ;
2424 ipfsId ?: string ;
2525 code ?: string ;
26- jsParams ?: Record < string , any > ;
26+ jsParams ?: Record < string , unknown > ;
2727}
2828
2929const ONE_MINUTE = 1 * 60 * 1000 ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export interface UpdatesContext {
3535interface LitActionStateDefinition {
3636 code ?: ContextOrLiteral < string > ;
3737 ipfsId ?: ContextOrLiteral < string > ;
38- jsParams ?: Record < string , any > ;
38+ jsParams ?: Record < string , unknown > ;
3939}
4040
4141export interface ContextStateDefinition {
@@ -125,7 +125,7 @@ export interface EvmContractEventTransitionDefinition
125125 contractABI : ethers . ContractInterface ;
126126 contractAddress : Address ;
127127 eventName : string ;
128- eventParams ?: any ;
128+ eventParams ?: any [ ] ;
129129}
130130
131131export interface TransitionDefinition {
You can’t perform that action at this time.
0 commit comments