diff --git a/hedera-mirror-importer/pom.xml b/hedera-mirror-importer/pom.xml index 89ef82770d4..e55af122aca 100644 --- a/hedera-mirror-importer/pom.xml +++ b/hedera-mirror-importer/pom.xml @@ -45,8 +45,8 @@ caffeine - com.github.hashgraph - hedera-protobufs-java + com.hedera.hashgraph + hedera-protobuf-java-api ${hedera-protobuf.version} diff --git a/hedera-mirror-importer/src/main/resources/db/migration/v1/V1.40.4__response_codes.sql b/hedera-mirror-importer/src/main/resources/db/migration/v1/V1.40.4__response_codes.sql new file mode 100644 index 00000000000..f964c10dc7d --- /dev/null +++ b/hedera-mirror-importer/src/main/resources/db/migration/v1/V1.40.4__response_codes.sql @@ -0,0 +1,8 @@ +------------------- +-- Add new response codes +------------------- + +insert into t_transaction_results (result, proto_id) +values ('INVALID_TOKEN_MINT_METADATA', 248), + ('INVALID_TOKEN_BURN_METADATA', 249), + ('CURRENT_TREASURY_STILL_OWNS_NFTS', 250); diff --git a/hedera-mirror-importer/src/main/resources/db/migration/v2/V2.0.4__reference_table_inserts.sql b/hedera-mirror-importer/src/main/resources/db/migration/v2/V2.0.4__reference_table_inserts.sql index a672fbbd17e..b21ba730a2e 100644 --- a/hedera-mirror-importer/src/main/resources/db/migration/v2/V2.0.4__reference_table_inserts.sql +++ b/hedera-mirror-importer/src/main/resources/db/migration/v2/V2.0.4__reference_table_inserts.sql @@ -214,7 +214,10 @@ values ('OK', 0), ('CUSTOM_SCHEDULE_ALREADY_HAS_NO_FEES', 244), ('CUSTOM_FEE_DENOMINATION_MUST_BE_FUNGIBLE_COMMON', 245), ('CUSTOM_FRACTIONAL_FEE_ONLY_ALLOWED_FOR_FUNGIBLE_COMMON', 246), - ('INVALID_CUSTOM_FEE_SCHEDULE_KEY', 247); + ('INVALID_CUSTOM_FEE_SCHEDULE_KEY', 247), + ('INVALID_TOKEN_MINT_METADATA', 248), + ('INVALID_TOKEN_BURN_METADATA', 249), + ('CURRENT_TREASURY_STILL_OWNS_NFTS', 250); -- t_transaction_types insert into t_transaction_types (proto_id, name, entity_type) diff --git a/hedera-mirror-protobuf/pom.xml b/hedera-mirror-protobuf/pom.xml index f448b963683..ddc9cbd2962 100644 --- a/hedera-mirror-protobuf/pom.xml +++ b/hedera-mirror-protobuf/pom.xml @@ -36,8 +36,8 @@ grpc-protobuf - com.github.hashgraph - hedera-protobufs-java + com.hedera.hashgraph + hedera-protobuf-java-api ${hedera-protobuf.version} diff --git a/pom.xml b/pom.xml index 737aec35db0..87bf7b9c5e8 100644 --- a/pom.xml +++ b/pom.xml @@ -65,7 +65,7 @@ 2.11.0.RELEASE 1.39.0 30.1.1-jre - 8699be4 + 0.16.0-alpha.3 2.0.8 0.8.7 11 @@ -543,11 +543,4 @@ - - - - jitpack.io - https://jitpack.io - -