use of io.nem.symbol.sdk.openapi.vertx.model.TransactionInfoDTO in project nem2-sdk-java by nemtech.
the class TransactionMapperVertxTest method shouldCreateStandaloneSubNamespaceCreationTransaction.
@Test
void shouldCreateStandaloneSubNamespaceCreationTransaction() {
TransactionInfoDTO namespaceCreationTransactionDTO = TestHelperVertx.loadTransactionInfoDTO("standaloneSubNamespaceCreationTransaction.json");
Transaction namespaceCreationTransaction = map(namespaceCreationTransactionDTO);
validateStandaloneTransaction(namespaceCreationTransaction, namespaceCreationTransactionDTO);
}
use of io.nem.symbol.sdk.openapi.vertx.model.TransactionInfoDTO in project nem2-sdk-java by nemtech.
the class TransactionMapperVertxTest method shouldCreateAggregateMosaicAddressRestrictionTransaction.
@Test
void shouldCreateAggregateMosaicAddressRestrictionTransaction() {
TransactionInfoDTO aggregateMosaicAddressRestrictionTransactionDTO = TestHelperVertx.loadTransactionInfoDTO("aggregateMosaicAddressRestrictionTransaction.json");
Transaction aggregateMosaicAddressRestrictionTransaction = map(aggregateMosaicAddressRestrictionTransactionDTO);
validateAggregateTransaction((AggregateTransaction) aggregateMosaicAddressRestrictionTransaction, aggregateMosaicAddressRestrictionTransactionDTO);
}
use of io.nem.symbol.sdk.openapi.vertx.model.TransactionInfoDTO in project nem2-sdk-java by nemtech.
the class TransactionMapperVertxTest method shouldCreateAggregateMultisigModificationTransaction.
@Test
void shouldCreateAggregateMultisigModificationTransaction() {
TransactionInfoDTO aggregateMultisigModificationTransactionDTO = TestHelperVertx.loadTransactionInfoDTO("aggregateMultisigModificationTransaction.json");
Transaction aggregateMultisigModificationTransaction = map(aggregateMultisigModificationTransactionDTO);
validateAggregateTransaction((AggregateTransaction) aggregateMultisigModificationTransaction, aggregateMultisigModificationTransactionDTO);
}
use of io.nem.symbol.sdk.openapi.vertx.model.TransactionInfoDTO in project nem2-sdk-java by nemtech.
the class TransactionMapperVertxTest method shouldCreateAggregateTransferTransactionUsingAlias.
@Test
void shouldCreateAggregateTransferTransactionUsingAlias() {
TransactionInfoDTO aggregateTransferTransactionDTO = TestHelperVertx.loadTransactionInfoDTO("aggregateTransferTransactionUsingAlias.json");
Transaction aggregateTransferTransaction = map(aggregateTransferTransactionDTO);
validateAggregateTransaction((AggregateTransaction) aggregateTransferTransaction, aggregateTransferTransactionDTO);
}
use of io.nem.symbol.sdk.openapi.vertx.model.TransactionInfoDTO in project nem2-sdk-java by nemtech.
the class TransactionMapperVertxTest method shouldCreateStandaloneSecretProofTransaction.
@Test
void shouldCreateStandaloneSecretProofTransaction() {
TransactionInfoDTO secretProofTransactionDTO = TestHelperVertx.loadTransactionInfoDTO("standaloneSecretProofTransaction.json");
Transaction secretProofTransaction = map(secretProofTransactionDTO);
validateStandaloneTransaction(secretProofTransaction, secretProofTransactionDTO);
}
Aggregations