Type Alias DappSdkMethods
DappSdkMethods: Pick<
DappSDK,
| "init"
| "connect"
| "disconnect"
| "status"
| "listAccounts"
| "onStatusChanged"
| "removeOnStatusChanged"
| "onAccountsChanged"
| "removeOnAccountsChanged"
| "onTxChanged"
| "removeOnTxChanged"
| "ledgerApi"
| "signMessage"
| "prepareExecuteAndWait",
>
The slice of
DappSDKthis package calls. Deliberately narrower than the class: it states which methods the wrapper supports, and a realDappSDKsatisfies it structurally.