Interface ExternalServiceAsync
-
- All Implemented Interfaces:
public interface ExternalServiceAsyncWalletsrepresent 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 interfaceExternalServiceAsync.WithRawResponseA view of ExternalServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract ExternalServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract ExternalServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
connect
CompletableFuture<Wallet> connect(String accountId, ExternalConnectParams params)
Connect a
Walletto theAccountafter verifying the signature.
-
connect
CompletableFuture<Wallet> connect(String accountId, ExternalConnectParams params, RequestOptions requestOptions)
-
connect
CompletableFuture<Wallet> connect(ExternalConnectParams params)
-
connect
abstract CompletableFuture<Wallet> connect(ExternalConnectParams params, RequestOptions requestOptions)
-
getNonce
CompletableFuture<ExternalGetNonceResponse> getNonce(String accountId, ExternalGetNonceParams params)
Get a nonce and message to be signed in order to verify
Walletownership.
-
getNonce
CompletableFuture<ExternalGetNonceResponse> getNonce(String accountId, ExternalGetNonceParams params, RequestOptions requestOptions)
-
getNonce
CompletableFuture<ExternalGetNonceResponse> getNonce(ExternalGetNonceParams params)
-
getNonce
abstract CompletableFuture<ExternalGetNonceResponse> getNonce(ExternalGetNonceParams params, RequestOptions requestOptions)
-
-
-
-