Updated on 2026-08-14

This commit is contained in:
Tangem 2019-07-19 13:58:16 +03:00
parent 1a54ecc244
commit 1e1e2932cf
76 changed files with 4011 additions and 102 deletions

View file

@ -0,0 +1,13 @@
package com.tangem.wallet.eos;
import com.tangem.wallet.eos.EosPushTransactionRequest;
import io.jafka.jeos.core.response.chain.transaction.PushedTransaction;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.POST;
public interface EosApiPush {
@POST("/v1/chain/push_transaction")
Call<PushedTransaction> pushTransaction(@Body EosPushTransactionRequest eosPushTransactionRequest);
}