Interface Eip155Service.WithRawResponse
-
- All Implemented Interfaces:
public interface Eip155Service.WithRawResponseA view of Eip155Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract Eip155Service.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
createPermit
@MustBeClosed() HttpResponseFor<Eip155CreatePermitResponse> createPermit(String accountId, Eip155CreatePermitParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/order_requests/eip155/permit, but is otherwise the same as Eip155Service.createPermit.
-
createPermit
@MustBeClosed() HttpResponseFor<Eip155CreatePermitResponse> createPermit(String accountId, Eip155CreatePermitParams params, RequestOptions requestOptions)
-
createPermit
@MustBeClosed() HttpResponseFor<Eip155CreatePermitResponse> createPermit(Eip155CreatePermitParams params)
-
createPermit
@MustBeClosed() abstract HttpResponseFor<Eip155CreatePermitResponse> createPermit(Eip155CreatePermitParams params, RequestOptions requestOptions)
-
createPermitTransaction
@MustBeClosed() HttpResponseFor<Eip155CreatePermitTransactionResponse> createPermitTransaction(String accountId, Eip155CreatePermitTransactionParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/order_requests/eip155/permit_transaction, but is otherwise the same as Eip155Service.createPermitTransaction.
-
createPermitTransaction
@MustBeClosed() HttpResponseFor<Eip155CreatePermitTransactionResponse> createPermitTransaction(String accountId, Eip155CreatePermitTransactionParams params, RequestOptions requestOptions)
-
createPermitTransaction
@MustBeClosed() HttpResponseFor<Eip155CreatePermitTransactionResponse> createPermitTransaction(Eip155CreatePermitTransactionParams params)
-
createPermitTransaction
@MustBeClosed() abstract HttpResponseFor<Eip155CreatePermitTransactionResponse> createPermitTransaction(Eip155CreatePermitTransactionParams params, RequestOptions requestOptions)
-
submit
@MustBeClosed() HttpResponseFor<Eip155SubmitResponse> submit(String accountId, Eip155SubmitParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/order_requests/eip155, but is otherwise the same as Eip155Service.submit.
-
submit
@MustBeClosed() HttpResponseFor<Eip155SubmitResponse> submit(String accountId, Eip155SubmitParams params, RequestOptions requestOptions)
-
submit
@MustBeClosed() HttpResponseFor<Eip155SubmitResponse> submit(Eip155SubmitParams params)
-
submit
@MustBeClosed() abstract HttpResponseFor<Eip155SubmitResponse> submit(Eip155SubmitParams params, RequestOptions requestOptions)
-
-
-
-