-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Chain, PublicClient, Transport } from 'viem'; | ||
import { sequencerInbox } from '../contracts'; | ||
import { ActionParameters } from '../types/Actions'; | ||
|
||
export type GetMaxTimeVariationParameters<Curried extends boolean = false> = ActionParameters< | ||
{}, | ||
'sequencerInbox', | ||
Curried | ||
>; | ||
|
||
export type GetMaxTimeVariationReturnType = { | ||
delayBlocks: bigint; | ||
futureBlocks: bigint; | ||
delaySeconds: bigint; | ||
futureSeconds: bigint; | ||
}; | ||
|
||
export async function getMaxTimeVariation<TChain extends Chain | undefined>( | ||
client: PublicClient<Transport, TChain>, | ||
args: GetMaxTimeVariationParameters<false>, | ||
): Promise<GetMaxTimeVariationReturnType> { | ||
const [delayBlocks, futureBlocks, delaySeconds, futureSeconds] = await client.readContract({ | ||
abi: sequencerInbox.abi, | ||
functionName: 'maxTimeVariation', | ||
address: args.sequencerInbox, | ||
}); | ||
return { | ||
delayBlocks, | ||
futureBlocks, | ||
delaySeconds, | ||
futureSeconds, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Address, Chain, PublicClient, ReadContractReturnType, Transport } from 'viem'; | ||
import { sequencerInbox } from '../contracts'; | ||
import { ActionParameters } from '../types/Actions'; | ||
|
||
type Args = { | ||
batchPoster: Address; | ||
}; | ||
type SequencerInboxABI = typeof sequencerInbox.abi; | ||
export type IsBatchPosterParameters<Curried extends boolean = false> = ActionParameters< | ||
Args, | ||
'sequencerInbox', | ||
Curried | ||
>; | ||
|
||
export type IsBatchPosterReturnType = ReadContractReturnType<SequencerInboxABI, 'isBatchPoster'>; | ||
|
||
export async function isBatchPoster<TChain extends Chain | undefined>( | ||
client: PublicClient<Transport, TChain>, | ||
args: IsBatchPosterParameters, | ||
): Promise<IsBatchPosterReturnType> { | ||
return client.readContract({ | ||
abi: sequencerInbox.abi, | ||
functionName: 'isBatchPoster', | ||
address: args.sequencerInbox, | ||
args: [args.batchPoster], | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Chain, Hex, PublicClient, ReadContractReturnType, Transport } from 'viem'; | ||
import { sequencerInbox } from '../contracts'; | ||
import { ActionParameters } from '../types/Actions'; | ||
|
||
type Args = { | ||
keysetHash: Hex; | ||
}; | ||
type SequencerInboxABI = typeof sequencerInbox.abi; | ||
|
||
export type IsValidKeysetHashParameters<Curried extends boolean = false> = ActionParameters< | ||
Args, | ||
'sequencerInbox', | ||
Curried | ||
>; | ||
|
||
export type IsValidKeysetHashReturnType = ReadContractReturnType< | ||
SequencerInboxABI, | ||
'isValidKeysetHash' | ||
>; | ||
|
||
export async function isValidKeysetHash<TChain extends Chain | undefined>( | ||
client: PublicClient<Transport, TChain>, | ||
args: IsValidKeysetHashParameters, | ||
): Promise<IsValidKeysetHashReturnType> { | ||
return client.readContract({ | ||
abi: sequencerInbox.abi, | ||
functionName: 'isValidKeysetHash', | ||
address: args.sequencerInbox, | ||
args: [args.keysetHash], | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { Address } from 'viem'; | ||
import { Prettify } from './utils'; | ||
|
||
type RemoveUndefinedArgs<T> = T extends { args?: undefined } ? Omit<T, 'args'> : T; | ||
|
||
/** | ||
* Actions require contract address, but as part of decorators, the address might have been passed already to the decorator. | ||
* | ||
* If the address was passed to the decorator, it's now optional (we still allow overrides of the address per action). | ||
* If the action doesn't have any other parameters beside the contract address, then parameters can either be { contract: address } or void | ||
*/ | ||
export type ActionParameters<Args, ContractName extends string, Curried extends boolean> = Prettify< | ||
Curried extends false | ||
? RemoveUndefinedArgs<Args & { [key in ContractName]: Address }> | ||
: Args extends { args?: undefined } | ||
? | ||
| { | ||
[key in ContractName]: Address; | ||
} | ||
| void | ||
: Args & { | ||
[key in ContractName]?: Address; | ||
} | ||
>; |