Signer
@ckb-ccc/core • Docs
@ckb-ccc/core / ccc / Signer
Class: abstract
Signer
An abstract class representing a generic signer. This class provides methods to connect, get addresses, and sign transactions.
Extended by
SignerBtc
SignerCkbScriptReadonly
SignerDummy
SignerEvm
Constructors
new Signer()
new Signer(
client_
):Signer
Parameters
• client_: Client
Returns
Signer
Source
signer/signer/index.ts:40
Properties
client_
protected
client_:Client
Source
signer/signer/index.ts:40
Accessors
client
get
client():Client
Returns
Client
Source
signer/signer/index.ts:45
signType
get
abstract
signType():SignerSignType
Returns
SignerSignType
Source
signer/signer/index.ts:43
type
get
abstract
type():SignerType
Returns
SignerType
Source
signer/signer/index.ts:42
Methods
connect()
abstract
connect():Promise
<void
>
Connects to the signer.
Returns
Promise
<void
>
A promise that resolves when the connection is complete.
Source
signer/signer/index.ts:89
disconnect()
disconnect():
Promise
<void
>
Disconnects to the signer.
Returns
Promise
<void
>
A promise that resolves when disconnected.
Source
signer/signer/index.ts:96
getAddressObjs()
abstract
getAddressObjs():Promise
<Address
[]>
Gets an array of Address objects associated with the signer.