Documentation ¶
Index ¶
- type Aptos
- func (_m *Aptos) Add(ctx context.Context, key aptoskey.Key) error
- func (_m *Aptos) Create(ctx context.Context) (aptoskey.Key, error)
- func (_m *Aptos) Delete(ctx context.Context, id string) (aptoskey.Key, error)
- func (_m *Aptos) EnsureKey(ctx context.Context) error
- func (_m *Aptos) Export(id string, password string) ([]byte, error)
- func (_m *Aptos) Get(id string) (aptoskey.Key, error)
- func (_m *Aptos) GetAll() ([]aptoskey.Key, error)
- func (_m *Aptos) Import(ctx context.Context, keyJSON []byte, password string) (aptoskey.Key, error)
- func (_m *Aptos) Sign(ctx context.Context, id string, msg []byte) ([]byte, error)
- type CSA
- func (_m *CSA) Add(ctx context.Context, key csakey.KeyV2) error
- func (_m *CSA) Create(ctx context.Context) (csakey.KeyV2, error)
- func (_m *CSA) Delete(ctx context.Context, id string) (csakey.KeyV2, error)
- func (_m *CSA) EnsureKey(ctx context.Context) error
- func (_m *CSA) Export(id string, password string) ([]byte, error)
- func (_m *CSA) Get(id string) (csakey.KeyV2, error)
- func (_m *CSA) GetAll() ([]csakey.KeyV2, error)
- func (_m *CSA) Import(ctx context.Context, keyJSON []byte, password string) (csakey.KeyV2, error)
- type Cosmos
- func (_m *Cosmos) Add(ctx context.Context, key cosmoskey.Key) error
- func (_m *Cosmos) Create(ctx context.Context) (cosmoskey.Key, error)
- func (_m *Cosmos) Delete(ctx context.Context, id string) (cosmoskey.Key, error)
- func (_m *Cosmos) EnsureKey(ctx context.Context) error
- func (_m *Cosmos) Export(id string, password string) ([]byte, error)
- func (_m *Cosmos) Get(id string) (cosmoskey.Key, error)
- func (_m *Cosmos) GetAll() ([]cosmoskey.Key, error)
- func (_m *Cosmos) Import(ctx context.Context, keyJSON []byte, password string) (cosmoskey.Key, error)
- type DKGEncrypt
- func (_m *DKGEncrypt) Add(ctx context.Context, key dkgencryptkey.Key) error
- func (_m *DKGEncrypt) Create(ctx context.Context) (dkgencryptkey.Key, error)
- func (_m *DKGEncrypt) Delete(ctx context.Context, id string) (dkgencryptkey.Key, error)
- func (_m *DKGEncrypt) EnsureKey(ctx context.Context) error
- func (_m *DKGEncrypt) Export(id string, password string) ([]byte, error)
- func (_m *DKGEncrypt) Get(id string) (dkgencryptkey.Key, error)
- func (_m *DKGEncrypt) GetAll() ([]dkgencryptkey.Key, error)
- func (_m *DKGEncrypt) Import(ctx context.Context, keyJSON []byte, password string) (dkgencryptkey.Key, error)
- type DKGSign
- func (_m *DKGSign) Add(ctx context.Context, key dkgsignkey.Key) error
- func (_m *DKGSign) Create(ctx context.Context) (dkgsignkey.Key, error)
- func (_m *DKGSign) Delete(ctx context.Context, id string) (dkgsignkey.Key, error)
- func (_m *DKGSign) EnsureKey(ctx context.Context) error
- func (_m *DKGSign) Export(id string, password string) ([]byte, error)
- func (_m *DKGSign) Get(id string) (dkgsignkey.Key, error)
- func (_m *DKGSign) GetAll() ([]dkgsignkey.Key, error)
- func (_m *DKGSign) Import(ctx context.Context, keyJSON []byte, password string) (dkgsignkey.Key, error)
- type Eth
- func (_m *Eth) Add(ctx context.Context, address common.Address, chainID *big.Int) error
- func (_m *Eth) CheckEnabled(ctx context.Context, address common.Address, chainID *big.Int) error
- func (_m *Eth) Create(ctx context.Context, chainIDs ...*big.Int) (ethkey.KeyV2, error)
- func (_m *Eth) Delete(ctx context.Context, id string) (ethkey.KeyV2, error)
- func (_m *Eth) Disable(ctx context.Context, address common.Address, chainID *big.Int) error
- func (_m *Eth) Enable(ctx context.Context, address common.Address, chainID *big.Int) error
- func (_m *Eth) EnabledAddressesForChain(ctx context.Context, chainID *big.Int) ([]common.Address, error)
- func (_m *Eth) EnabledKeysForChain(ctx context.Context, chainID *big.Int) ([]ethkey.KeyV2, error)
- func (_m *Eth) EnsureKeys(ctx context.Context, chainIDs ...*big.Int) error
- func (_m *Eth) Export(ctx context.Context, id string, password string) ([]byte, error)
- func (_m *Eth) Get(ctx context.Context, id string) (ethkey.KeyV2, error)
- func (_m *Eth) GetAll(ctx context.Context) ([]ethkey.KeyV2, error)
- func (_m *Eth) GetRoundRobinAddress(ctx context.Context, chainID *big.Int, addresses ...common.Address) (common.Address, error)
- func (_m *Eth) GetState(ctx context.Context, id string, chainID *big.Int) (ethkey.State, error)
- func (_m *Eth) GetStateForKey(ctx context.Context, key ethkey.KeyV2) (ethkey.State, error)
- func (_m *Eth) GetStatesForChain(ctx context.Context, chainID *big.Int) ([]ethkey.State, error)
- func (_m *Eth) GetStatesForKeys(ctx context.Context, keys []ethkey.KeyV2) ([]ethkey.State, error)
- func (_m *Eth) Import(ctx context.Context, keyJSON []byte, password string, chainIDs ...*big.Int) (ethkey.KeyV2, error)
- func (_m *Eth) SignTx(ctx context.Context, fromAddress common.Address, tx *types.Transaction, ...) (*types.Transaction, error)
- func (_m *Eth) SubscribeToKeyChanges(ctx context.Context) (chan struct{}, func())
- func (_m *Eth) XXXTestingOnlyAdd(ctx context.Context, key ethkey.KeyV2)
- func (_m *Eth) XXXTestingOnlySetState(ctx context.Context, keyState ethkey.State)
- type Master
- func (_m *Master) Aptos() keystore.Aptos
- func (_m *Master) CSA() keystore.CSA
- func (_m *Master) Cosmos() keystore.Cosmos
- func (_m *Master) DKGEncrypt() keystore.DKGEncrypt
- func (_m *Master) DKGSign() keystore.DKGSign
- func (_m *Master) Eth() keystore.Eth
- func (_m *Master) IsEmpty(ctx context.Context) (bool, error)
- func (_m *Master) OCR() keystore.OCR
- func (_m *Master) OCR2() keystore.OCR2
- func (_m *Master) P2P() keystore.P2P
- func (_m *Master) Solana() keystore.Solana
- func (_m *Master) StarkNet() keystore.StarkNet
- func (_m *Master) Unlock(ctx context.Context, password string) error
- func (_m *Master) VRF() keystore.VRF
- type OCR
- func (_m *OCR) Add(ctx context.Context, key ocrkey.KeyV2) error
- func (_m *OCR) Create(ctx context.Context) (ocrkey.KeyV2, error)
- func (_m *OCR) Delete(ctx context.Context, id string) (ocrkey.KeyV2, error)
- func (_m *OCR) EnsureKey(ctx context.Context) error
- func (_m *OCR) Export(id string, password string) ([]byte, error)
- func (_m *OCR) Get(id string) (ocrkey.KeyV2, error)
- func (_m *OCR) GetAll() ([]ocrkey.KeyV2, error)
- func (_m *OCR) Import(ctx context.Context, keyJSON []byte, password string) (ocrkey.KeyV2, error)
- type OCR2
- func (_m *OCR2) Add(ctx context.Context, key ocr2key.KeyBundle) error
- func (_m *OCR2) Create(_a0 context.Context, _a1 chaintype.ChainType) (ocr2key.KeyBundle, error)
- func (_m *OCR2) Delete(ctx context.Context, id string) error
- func (_m *OCR2) EnsureKeys(ctx context.Context, enabledChains ...chaintype.ChainType) error
- func (_m *OCR2) Export(id string, password string) ([]byte, error)
- func (_m *OCR2) Get(id string) (ocr2key.KeyBundle, error)
- func (_m *OCR2) GetAll() ([]ocr2key.KeyBundle, error)
- func (_m *OCR2) GetAllOfType(_a0 chaintype.ChainType) ([]ocr2key.KeyBundle, error)
- func (_m *OCR2) Import(ctx context.Context, keyJSON []byte, password string) (ocr2key.KeyBundle, error)
- type P2P
- func (_m *P2P) Add(ctx context.Context, key p2pkey.KeyV2) error
- func (_m *P2P) Create(ctx context.Context) (p2pkey.KeyV2, error)
- func (_m *P2P) Delete(ctx context.Context, id p2pkey.PeerID) (p2pkey.KeyV2, error)
- func (_m *P2P) EnsureKey(ctx context.Context) error
- func (_m *P2P) Export(id p2pkey.PeerID, password string) ([]byte, error)
- func (_m *P2P) Get(id p2pkey.PeerID) (p2pkey.KeyV2, error)
- func (_m *P2P) GetAll() ([]p2pkey.KeyV2, error)
- func (_m *P2P) GetOrFirst(id p2pkey.PeerID) (p2pkey.KeyV2, error)
- func (_m *P2P) Import(ctx context.Context, keyJSON []byte, password string) (p2pkey.KeyV2, error)
- type Solana
- func (_m *Solana) Add(ctx context.Context, key solkey.Key) error
- func (_m *Solana) Create(ctx context.Context) (solkey.Key, error)
- func (_m *Solana) Delete(ctx context.Context, id string) (solkey.Key, error)
- func (_m *Solana) EnsureKey(ctx context.Context) error
- func (_m *Solana) Export(id string, password string) ([]byte, error)
- func (_m *Solana) Get(id string) (solkey.Key, error)
- func (_m *Solana) GetAll() ([]solkey.Key, error)
- func (_m *Solana) Import(ctx context.Context, keyJSON []byte, password string) (solkey.Key, error)
- func (_m *Solana) Sign(ctx context.Context, id string, msg []byte) ([]byte, error)
- type StarkNet
- func (_m *StarkNet) Add(ctx context.Context, key starkkey.Key) error
- func (_m *StarkNet) Create(ctx context.Context) (starkkey.Key, error)
- func (_m *StarkNet) Delete(ctx context.Context, id string) (starkkey.Key, error)
- func (_m *StarkNet) EnsureKey(ctx context.Context) error
- func (_m *StarkNet) Export(id string, password string) ([]byte, error)
- func (_m *StarkNet) Get(id string) (starkkey.Key, error)
- func (_m *StarkNet) GetAll() ([]starkkey.Key, error)
- func (_m *StarkNet) Import(ctx context.Context, keyJSON []byte, password string) (starkkey.Key, error)
- type VRF
- func (_m *VRF) Add(ctx context.Context, key vrfkey.KeyV2) error
- func (_m *VRF) Create(ctx context.Context) (vrfkey.KeyV2, error)
- func (_m *VRF) Delete(ctx context.Context, id string) (vrfkey.KeyV2, error)
- func (_m *VRF) Export(id string, password string) ([]byte, error)
- func (_m *VRF) GenerateProof(id string, seed *big.Int) (vrfkey.Proof, error)
- func (_m *VRF) Get(id string) (vrfkey.KeyV2, error)
- func (_m *VRF) GetAll() ([]vrfkey.KeyV2, error)
- func (_m *VRF) Import(ctx context.Context, keyJSON []byte, password string) (vrfkey.KeyV2, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Aptos ¶ added in v2.14.0
Aptos is an autogenerated mock type for the Aptos type
func NewAptos ¶ added in v2.14.0
NewAptos creates a new instance of Aptos. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*Aptos) EnsureKey ¶ added in v2.14.0
EnsureKey provides a mock function with given fields: ctx
func (*Aptos) Export ¶ added in v2.14.0
Export provides a mock function with given fields: id, password
type CSA ¶
CSA is an autogenerated mock type for the CSA type
func NewCSA ¶
NewCSA creates a new instance of CSA. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
type Cosmos ¶
Cosmos is an autogenerated mock type for the Cosmos type
func NewCosmos ¶
NewCosmos creates a new instance of Cosmos. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
type DKGEncrypt ¶
DKGEncrypt is an autogenerated mock type for the DKGEncrypt type
func NewDKGEncrypt ¶
func NewDKGEncrypt(t interface { mock.TestingT Cleanup(func()) }) *DKGEncrypt
NewDKGEncrypt creates a new instance of DKGEncrypt. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*DKGEncrypt) Add ¶
func (_m *DKGEncrypt) Add(ctx context.Context, key dkgencryptkey.Key) error
Add provides a mock function with given fields: ctx, key
func (*DKGEncrypt) Create ¶
func (_m *DKGEncrypt) Create(ctx context.Context) (dkgencryptkey.Key, error)
Create provides a mock function with given fields: ctx
func (*DKGEncrypt) Delete ¶
func (_m *DKGEncrypt) Delete(ctx context.Context, id string) (dkgencryptkey.Key, error)
Delete provides a mock function with given fields: ctx, id
func (*DKGEncrypt) EnsureKey ¶
func (_m *DKGEncrypt) EnsureKey(ctx context.Context) error
EnsureKey provides a mock function with given fields: ctx
func (*DKGEncrypt) Export ¶
func (_m *DKGEncrypt) Export(id string, password string) ([]byte, error)
Export provides a mock function with given fields: id, password
func (*DKGEncrypt) Get ¶
func (_m *DKGEncrypt) Get(id string) (dkgencryptkey.Key, error)
Get provides a mock function with given fields: id
func (*DKGEncrypt) GetAll ¶
func (_m *DKGEncrypt) GetAll() ([]dkgencryptkey.Key, error)
GetAll provides a mock function with given fields:
func (*DKGEncrypt) Import ¶
func (_m *DKGEncrypt) Import(ctx context.Context, keyJSON []byte, password string) (dkgencryptkey.Key, error)
Import provides a mock function with given fields: ctx, keyJSON, password
type DKGSign ¶
DKGSign is an autogenerated mock type for the DKGSign type
func NewDKGSign ¶
NewDKGSign creates a new instance of DKGSign. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*DKGSign) Get ¶
func (_m *DKGSign) Get(id string) (dkgsignkey.Key, error)
Get provides a mock function with given fields: id
type Eth ¶
Eth is an autogenerated mock type for the Eth type
func NewEth ¶
NewEth creates a new instance of Eth. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*Eth) Add ¶ added in v2.3.0
Add provides a mock function with given fields: ctx, address, chainID
func (*Eth) CheckEnabled ¶
CheckEnabled provides a mock function with given fields: ctx, address, chainID
func (*Eth) EnabledAddressesForChain ¶ added in v2.1.0
func (_m *Eth) EnabledAddressesForChain(ctx context.Context, chainID *big.Int) ([]common.Address, error)
EnabledAddressesForChain provides a mock function with given fields: ctx, chainID
func (*Eth) EnabledKeysForChain ¶
EnabledKeysForChain provides a mock function with given fields: ctx, chainID
func (*Eth) EnsureKeys ¶
EnsureKeys provides a mock function with given fields: ctx, chainIDs
func (*Eth) GetRoundRobinAddress ¶
func (_m *Eth) GetRoundRobinAddress(ctx context.Context, chainID *big.Int, addresses ...common.Address) (common.Address, error)
GetRoundRobinAddress provides a mock function with given fields: ctx, chainID, addresses
func (*Eth) GetStateForKey ¶ added in v2.3.0
GetStateForKey provides a mock function with given fields: ctx, key
func (*Eth) GetStatesForChain ¶
GetStatesForChain provides a mock function with given fields: ctx, chainID
func (*Eth) GetStatesForKeys ¶
GetStatesForKeys provides a mock function with given fields: ctx, keys
func (*Eth) Import ¶
func (_m *Eth) Import(ctx context.Context, keyJSON []byte, password string, chainIDs ...*big.Int) (ethkey.KeyV2, error)
Import provides a mock function with given fields: ctx, keyJSON, password, chainIDs
func (*Eth) SignTx ¶
func (_m *Eth) SignTx(ctx context.Context, fromAddress common.Address, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error)
SignTx provides a mock function with given fields: ctx, fromAddress, tx, chainID
func (*Eth) SubscribeToKeyChanges ¶
SubscribeToKeyChanges provides a mock function with given fields: ctx
func (*Eth) XXXTestingOnlyAdd ¶
XXXTestingOnlyAdd provides a mock function with given fields: ctx, key
type Master ¶
Master is an autogenerated mock type for the Master type
func NewMaster ¶
NewMaster creates a new instance of Master. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*Master) DKGEncrypt ¶
func (_m *Master) DKGEncrypt() keystore.DKGEncrypt
DKGEncrypt provides a mock function with given fields:
type OCR ¶
OCR is an autogenerated mock type for the OCR type
func NewOCR ¶
NewOCR creates a new instance of OCR. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
type OCR2 ¶
OCR2 is an autogenerated mock type for the OCR2 type
func NewOCR2 ¶
NewOCR2 creates a new instance of OCR2. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*OCR2) EnsureKeys ¶
EnsureKeys provides a mock function with given fields: ctx, enabledChains
func (*OCR2) GetAllOfType ¶
GetAllOfType provides a mock function with given fields: _a0
type P2P ¶
P2P is an autogenerated mock type for the P2P type
func NewP2P ¶
NewP2P creates a new instance of P2P. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*P2P) GetOrFirst ¶
GetOrFirst provides a mock function with given fields: id
type Solana ¶
Solana is an autogenerated mock type for the Solana type
func NewSolana ¶
NewSolana creates a new instance of Solana. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
type StarkNet ¶
StarkNet is an autogenerated mock type for the StarkNet type
func NewStarkNet ¶
NewStarkNet creates a new instance of StarkNet. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
type VRF ¶
VRF is an autogenerated mock type for the VRF type
func NewVRF ¶
NewVRF creates a new instance of VRF. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.
func (*VRF) GenerateProof ¶
GenerateProof provides a mock function with given fields: id, seed