Skip to content

Commit

Permalink
Merge pull request #18 from cryptomkt/feat/adds-new-transaction-subty…
Browse files Browse the repository at this point in the history
…pe-airdrop

Feat/adds new transaction subtype airdrop
  • Loading branch information
ppbustamante authored Jun 27, 2024
2 parents cd2080b + 8ac8918 commit 28b66d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.cryptomkt.api</groupId>
<artifactId>cryptomarket</artifactId>
<packaging>jar</packaging>
<version>3.1.0</version>
<version>3.1.1</version>

<licenses>
<license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ public enum TransactionSubtype {
/** chain switch from */
CHAIN_SWITCH_FROM("CHAIN_SWITCH_FROM"),
/** chain switch to */
CHAIN_SWITCH_TO("CHAIN_SWITCH_TO");
CHAIN_SWITCH_TO("CHAIN_SWITCH_TO"),
/** airdrop */
AIRDROP("AIRDROP");

private final String label;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import com.cryptomarket.params.OrderBy;
import com.cryptomarket.params.ParamsBuilder;
import com.cryptomarket.params.Sort;
import com.cryptomarket.params.SortBy;
import com.cryptomarket.params.TransactionStatus;
import com.cryptomarket.params.TransactionSubtype;
import com.cryptomarket.params.TransactionType;
Expand Down

0 comments on commit 28b66d9

Please sign in to comment.