Interface ExternalService
-
- All Implemented Interfaces:
public interface ExternalServiceWalletsrepresent the blockchain wallet that holds the assets of anAccount.An
Accountmay be connected to a singleWallet.Individual
Entitiescan connect their self-custodiedWalletsby proving ownership of theWalletaddress. For Dinari Partners, a Dinari-managedWalletcan be created for the PartnerEntityin the Dinari Partners Portal. This may be used in omnibus accounting for self-managing customers' assets.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceExternalService.WithRawResponseA view of ExternalService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract ExternalService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract ExternalServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. Walletconnect(String accountId, ExternalConnectParams params)Connect a Walletto theAccountafter verifying the signature.Walletconnect(String accountId, ExternalConnectParams params, RequestOptions requestOptions)Walletconnect(ExternalConnectParams params)abstract Walletconnect(ExternalConnectParams params, RequestOptions requestOptions)ExternalGetNonceResponsegetNonce(String accountId, ExternalGetNonceParams params)Get a nonce and message to be signed in order to verify Walletownership.ExternalGetNonceResponsegetNonce(String accountId, ExternalGetNonceParams params, RequestOptions requestOptions)ExternalGetNonceResponsegetNonce(ExternalGetNonceParams params)abstract ExternalGetNonceResponsegetNonce(ExternalGetNonceParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract ExternalService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract ExternalService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
connect
Wallet connect(String accountId, ExternalConnectParams params)
Connect a
Walletto theAccountafter verifying the signature.
-
connect
Wallet connect(String accountId, ExternalConnectParams params, RequestOptions requestOptions)
-
connect
Wallet connect(ExternalConnectParams params)
-
connect
abstract Wallet connect(ExternalConnectParams params, RequestOptions requestOptions)
-
getNonce
ExternalGetNonceResponse getNonce(String accountId, ExternalGetNonceParams params)
Get a nonce and message to be signed in order to verify
Walletownership.
-
getNonce
ExternalGetNonceResponse getNonce(String accountId, ExternalGetNonceParams params, RequestOptions requestOptions)
-
getNonce
ExternalGetNonceResponse getNonce(ExternalGetNonceParams params)
-
getNonce
abstract ExternalGetNonceResponse getNonce(ExternalGetNonceParams params, RequestOptions requestOptions)
-
-
-
-