Skip to content

Commit

Permalink
Add ethdo key provider
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Jul 18, 2023
1 parent 98b589e commit 99c5f7b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 0 additions & 2 deletions services/oracle/src/providers/dkg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ import { operatorStore } from '@casimir/data'
import { DepositDataInput } from '../interfaces/DepositDataInput'

export class Dkg {
/** DKG CLI path */
cliPath: string
/** DKG messenger service URL */
messengerUrl: string

constructor(options: DkgOptions) {
Expand Down
11 changes: 11 additions & 0 deletions services/oracle/src/providers/ethdo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { CreateValidatorInput } from '../interfaces/CreateValidatorInput'
import { Validator } from '@casimir/types'

export class Ethdo {
// async createValidator(input: CreateValidatorInput, retriesLeft: number | undefined = 25): Promise<Validator> {},
// async reshareValidator(input: ReshareValidatorInput, retriesLeft: number | undefined = 25): Promise<Validator> {},
// async getDepositData(input: DepositDataInput, retriesLeft: number | undefined = 25): Promise<DepositData> {},
// async getShares(ceremonyId: string, retriesLeft: number | undefined = 25): Promise<Shares> {},
// async startKeygen(input: StartKeygenInput, retriesLeft: number | undefined = 25): Promise<string> {},
// async getOperatorUrls(operatorIds: number[], retriesLeft: number | undefined = 25): Promise<string[]> {},
}

0 comments on commit 99c5f7b

Please sign in to comment.