Skip to content

Commit 919d630

Browse files
committed
TCK moved to hiero namespace
1 parent 0132d0b commit 919d630

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+150
-145
lines changed

tck/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## Description
44

5-
This module contains implementation of the JSON-RPC server for the Java SDK to interpret and process requests from the Test Driver based on the [TCK's](https://github.com/hiero-ledger/hiero-sdk-tck) requirements. Upon receiving a request, it executes the corresponding function or procedure associated with the method specified in the request. Subsequently, it prepares the response in JSON format and sends it back to the test driver.
5+
This module contains implementation of the JSON-RPC server for the Java SDK to interpret and process requests from the
6+
Test Driver based on the [TCK's](https://github.com/hiero-ledger/hiero-sdk-tck) requirements.
7+
Upon receiving a request, it executes the corresponding function or procedure associated with the method specified in
8+
the request.
9+
Subsequently, it prepares the response in JSON format and sends it back to the test driver.
610

711
## Setup
812

@@ -24,7 +28,8 @@ cd tck
2428
../gradlew bootRun
2529
```
2630

27-
By default, the server will occupy port 80. If you need to specify a different port, modify the port in the `application.yml` file:
31+
By default, the server will occupy port 80.
32+
If you need to specify a different port, modify the port in the `application.yml` file:
2833

2934
```yaml
3035
server:

tck/src/main/java/com/hedera/hashgraph/tck/TckServer.java renamed to tck/src/main/java/org/hiero/tck/TckServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck;
2+
package org.hiero.tck;
33

44
import org.springframework.boot.SpringApplication;
55
import org.springframework.boot.autoconfigure.SpringBootApplication;

tck/src/main/java/com/hedera/hashgraph/tck/annotation/JSONRPC2Controller.java renamed to tck/src/main/java/org/hiero/tck/annotation/JSONRPC2Controller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.annotation;
2+
package org.hiero.tck.annotation;
33

44
import java.lang.annotation.ElementType;
55
import java.lang.annotation.Retention;

tck/src/main/java/com/hedera/hashgraph/tck/annotation/JSONRPC2Method.java renamed to tck/src/main/java/org/hiero/tck/annotation/JSONRPC2Method.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.annotation;
2+
package org.hiero.tck.annotation;
33

44
import java.lang.annotation.ElementType;
55
import java.lang.annotation.Retention;

tck/src/main/java/com/hedera/hashgraph/tck/annotation/JSONRPC2Service.java renamed to tck/src/main/java/org/hiero/tck/annotation/JSONRPC2Service.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.annotation;
2+
package org.hiero.tck.annotation;
33

44
import java.lang.annotation.ElementType;
55
import java.lang.annotation.Retention;

tck/src/main/java/com/hedera/hashgraph/tck/config/BeanConfig.java renamed to tck/src/main/java/org/hiero/tck/config/BeanConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.config;
2+
package org.hiero.tck.config;
33

44
import com.thetransactioncompany.jsonrpc2.server.Dispatcher;
55
import org.springframework.context.annotation.Bean;

tck/src/main/java/com/hedera/hashgraph/tck/config/WebConfig.java renamed to tck/src/main/java/org/hiero/tck/config/WebConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.config;
2+
package org.hiero.tck.config;
33

4-
import com.hedera.hashgraph.tck.controller.JRPCInterceptor;
4+
import org.hiero.tck.controller.JRPCInterceptor;
55
import org.springframework.context.annotation.Configuration;
66
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
77
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

tck/src/main/java/com/hedera/hashgraph/tck/controller/JRPCController.java renamed to tck/src/main/java/org/hiero/tck/controller/JRPCController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.controller;
2+
package org.hiero.tck.controller;
33

4-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Controller;
5-
import com.hedera.hashgraph.tck.util.JSONRPC2ServiceScanner;
4+
import org.hiero.tck.annotation.JSONRPC2Controller;
5+
import org.hiero.tck.util.JSONRPC2ServiceScanner;
66
import com.thetransactioncompany.jsonrpc2.JSONRPC2Request;
77
import com.thetransactioncompany.jsonrpc2.server.Dispatcher;
88
import jakarta.servlet.http.HttpServletRequest;

tck/src/main/java/com/hedera/hashgraph/tck/controller/JRPCInterceptor.java renamed to tck/src/main/java/org/hiero/tck/controller/JRPCInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.controller;
2+
package org.hiero.tck.controller;
33

44
import com.thetransactioncompany.jsonrpc2.JSONRPC2ParseException;
55
import com.thetransactioncompany.jsonrpc2.JSONRPC2Request;

tck/src/main/java/com/hedera/hashgraph/tck/exception/InvalidJSONRPC2ParamsException.java renamed to tck/src/main/java/org/hiero/tck/exception/InvalidJSONRPC2ParamsException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.exception;
2+
package org.hiero.tck.exception;
33

44
/**
55
* Thrown when the server cannot parse the given parameters.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.exception;
2+
package org.hiero.tck.exception;
33

44
/**
55
* Thrown when the server cannot process the request

tck/src/main/java/com/hedera/hashgraph/tck/methods/AbstractJSONRPC2Service.java renamed to tck/src/main/java/org/hiero/tck/methods/AbstractJSONRPC2Service.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods;
2+
package org.hiero.tck.methods;
33

44
import com.hedera.hashgraph.sdk.PrecheckStatusException;
55
import com.hedera.hashgraph.sdk.ReceiptStatusException;
6-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Method;
7-
import com.hedera.hashgraph.tck.exception.InvalidJSONRPC2ParamsException;
8-
import com.hedera.hashgraph.tck.exception.InvalidJSONRPC2RequestException;
9-
import com.hedera.hashgraph.tck.methods.JSONRPC2Error.ErrorData;
6+
import org.hiero.tck.annotation.JSONRPC2Method;
7+
import org.hiero.tck.exception.InvalidJSONRPC2ParamsException;
8+
import org.hiero.tck.exception.InvalidJSONRPC2RequestException;
9+
import org.hiero.tck.methods.JSONRPC2Error.ErrorData;
1010
import com.thetransactioncompany.jsonrpc2.JSONRPC2Error;
1111
import com.thetransactioncompany.jsonrpc2.JSONRPC2Request;
1212
import com.thetransactioncompany.jsonrpc2.JSONRPC2Response;
@@ -98,7 +98,7 @@ public JSONRPC2Response process(final JSONRPC2Request req, final MessageContext
9898
errorJsonObject.put("status", errorData.status().toString());
9999
errorJsonObject.put("message", errorData.message());
100100

101-
var hederaError = com.hedera.hashgraph.tck.methods.JSONRPC2Error.HEDERA_ERROR.setData(errorJsonObject);
101+
var hederaError = org.hiero.tck.methods.JSONRPC2Error.HEDERA_ERROR.setData(errorJsonObject);
102102
return new JSONRPC2Response(hederaError, req.getID());
103103
} catch (Exception e) {
104104
// other exceptions

tck/src/main/java/com/hedera/hashgraph/tck/methods/JSONRPC2Error.java renamed to tck/src/main/java/org/hiero/tck/methods/JSONRPC2Error.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods;
2+
package org.hiero.tck.methods;
33

44
import com.hedera.hashgraph.sdk.Status;
55

tck/src/main/java/com/hedera/hashgraph/tck/methods/JSONRPC2Param.java renamed to tck/src/main/java/org/hiero/tck/methods/JSONRPC2Param.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods;
2+
package org.hiero.tck.methods;
33

44
import java.util.Map;
55

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/AccountService.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/AccountService.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk;
2+
package org.hiero.tck.methods.sdk;
33

44
import com.google.protobuf.InvalidProtocolBufferException;
55
import com.hedera.hashgraph.sdk.AccountCreateTransaction;
@@ -10,14 +10,14 @@
1010
import com.hedera.hashgraph.sdk.HbarUnit;
1111
import com.hedera.hashgraph.sdk.Status;
1212
import com.hedera.hashgraph.sdk.TransactionReceipt;
13-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Method;
14-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Service;
15-
import com.hedera.hashgraph.tck.methods.AbstractJSONRPC2Service;
16-
import com.hedera.hashgraph.tck.methods.sdk.param.account.AccountCreateParams;
17-
import com.hedera.hashgraph.tck.methods.sdk.param.account.AccountDeleteParams;
18-
import com.hedera.hashgraph.tck.methods.sdk.param.account.AccountUpdateParams;
19-
import com.hedera.hashgraph.tck.methods.sdk.response.AccountResponse;
20-
import com.hedera.hashgraph.tck.util.KeyUtils;
13+
import org.hiero.tck.annotation.JSONRPC2Method;
14+
import org.hiero.tck.annotation.JSONRPC2Service;
15+
import org.hiero.tck.methods.AbstractJSONRPC2Service;
16+
import org.hiero.tck.methods.sdk.param.account.AccountCreateParams;
17+
import org.hiero.tck.methods.sdk.param.account.AccountDeleteParams;
18+
import org.hiero.tck.methods.sdk.param.account.AccountUpdateParams;
19+
import org.hiero.tck.methods.sdk.response.AccountResponse;
20+
import org.hiero.tck.util.KeyUtils;
2121
import java.time.Duration;
2222
import java.time.Instant;
2323

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/KeyService.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/KeyService.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk;
2+
package org.hiero.tck.methods.sdk;
33

44
import com.google.protobuf.InvalidProtocolBufferException;
55
import com.hedera.hashgraph.sdk.Key;
66
import com.hedera.hashgraph.sdk.KeyList;
77
import com.hedera.hashgraph.sdk.PrivateKey;
88
import com.hedera.hashgraph.sdk.PublicKey;
9-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Method;
10-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Service;
11-
import com.hedera.hashgraph.tck.exception.InvalidJSONRPC2RequestException;
12-
import com.hedera.hashgraph.tck.methods.AbstractJSONRPC2Service;
13-
import com.hedera.hashgraph.tck.methods.sdk.param.GenerateKeyParams;
14-
import com.hedera.hashgraph.tck.methods.sdk.response.GenerateKeyResponse;
15-
import com.hedera.hashgraph.tck.util.KeyUtils;
16-
import com.hedera.hashgraph.tck.util.KeyUtils.KeyType;
9+
import org.hiero.tck.annotation.JSONRPC2Method;
10+
import org.hiero.tck.annotation.JSONRPC2Service;
11+
import org.hiero.tck.exception.InvalidJSONRPC2RequestException;
12+
import org.hiero.tck.methods.AbstractJSONRPC2Service;
13+
import org.hiero.tck.methods.sdk.param.GenerateKeyParams;
14+
import org.hiero.tck.methods.sdk.response.GenerateKeyResponse;
15+
import org.hiero.tck.util.KeyUtils;
16+
import org.hiero.tck.util.KeyUtils.KeyType;
1717
import org.bouncycastle.util.encoders.Hex;
1818

1919
@JSONRPC2Service

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/SdkService.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/SdkService.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk;
2+
package org.hiero.tck.methods.sdk;
33

44
import com.hedera.hashgraph.sdk.AccountId;
55
import com.hedera.hashgraph.sdk.Client;
66
import com.hedera.hashgraph.sdk.PrivateKey;
7-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Method;
8-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Service;
9-
import com.hedera.hashgraph.tck.methods.AbstractJSONRPC2Service;
10-
import com.hedera.hashgraph.tck.methods.sdk.param.SetupParams;
11-
import com.hedera.hashgraph.tck.methods.sdk.response.SetupResponse;
7+
import org.hiero.tck.annotation.JSONRPC2Method;
8+
import org.hiero.tck.annotation.JSONRPC2Service;
9+
import org.hiero.tck.methods.AbstractJSONRPC2Service;
10+
import org.hiero.tck.methods.sdk.param.SetupParams;
11+
import org.hiero.tck.methods.sdk.response.SetupResponse;
1212
import java.util.HashMap;
1313
import java.util.List;
1414
import java.util.Map;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/TokenService.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/TokenService.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk;
2+
package org.hiero.tck.methods.sdk;
33

44
import com.google.protobuf.InvalidProtocolBufferException;
55
import com.hedera.hashgraph.sdk.*;
6-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Method;
7-
import com.hedera.hashgraph.tck.annotation.JSONRPC2Service;
8-
import com.hedera.hashgraph.tck.methods.AbstractJSONRPC2Service;
9-
import com.hedera.hashgraph.tck.methods.sdk.param.token.*;
10-
import com.hedera.hashgraph.tck.methods.sdk.response.token.*;
11-
import com.hedera.hashgraph.tck.util.KeyUtils;
6+
import org.hiero.tck.annotation.JSONRPC2Method;
7+
import org.hiero.tck.annotation.JSONRPC2Service;
8+
import org.hiero.tck.methods.AbstractJSONRPC2Service;
9+
import org.hiero.tck.methods.sdk.param.token.*;
10+
import org.hiero.tck.methods.sdk.response.token.*;
11+
import org.hiero.tck.util.KeyUtils;
1212
import java.time.Duration;
1313
import java.util.List;
1414
import java.util.stream.Collectors;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param;
2+
package org.hiero.tck.methods.sdk.param;
33

44
import com.hedera.hashgraph.sdk.Client;
55
import com.hedera.hashgraph.sdk.Hbar;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/param/CustomFee.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/param/CustomFee.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param;
2+
package org.hiero.tck.methods.sdk.param;
33

44
import com.hedera.hashgraph.sdk.*;
5-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.JSONRPC2Param;
66
import java.util.ArrayList;
77
import java.util.List;
88
import java.util.Map;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/param/GenerateKeyParams.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/param/GenerateKeyParams.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param;
2+
package org.hiero.tck.methods.sdk.param;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.util.KeyUtils.KeyType;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.util.KeyUtils.KeyType;
66
import java.util.ArrayList;
77
import java.util.List;
88
import java.util.Map;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/param/SetupParams.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/param/SetupParams.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param;
2+
package org.hiero.tck.methods.sdk.param;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
4+
import org.hiero.tck.methods.JSONRPC2Param;
55
import java.util.Map;
66
import java.util.Optional;
77
import lombok.AllArgsConstructor;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.account;
2+
package org.hiero.tck.methods.sdk.param.account;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.Map;
88
import java.util.Optional;
99
import lombok.AllArgsConstructor;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.account;
2+
package org.hiero.tck.methods.sdk.param.account;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.Map;
88
import java.util.Optional;
99
import lombok.AllArgsConstructor;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.account;
2+
package org.hiero.tck.methods.sdk.param.account;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.Map;
88
import java.util.Optional;
99
import lombok.AllArgsConstructor;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.token;
2+
package org.hiero.tck.methods.sdk.param.token;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.List;
88
import java.util.Map;
99
import java.util.Optional;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/param/token/BurnTokenParams.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/param/token/BurnTokenParams.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.token;
2+
package org.hiero.tck.methods.sdk.param.token;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.List;
88
import java.util.Map;
99
import java.util.Optional;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.token;
2+
package org.hiero.tck.methods.sdk.param.token;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.Map;
88
import java.util.Optional;
99
import lombok.AllArgsConstructor;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.token;
2+
package org.hiero.tck.methods.sdk.param.token;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.Map;
88
import java.util.Optional;
99
import lombok.AllArgsConstructor;

tck/src/main/java/com/hedera/hashgraph/tck/methods/sdk/param/token/MintTokenParams.java renamed to tck/src/main/java/org/hiero/tck/methods/sdk/param/token/MintTokenParams.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
package com.hedera.hashgraph.tck.methods.sdk.param.token;
2+
package org.hiero.tck.methods.sdk.param.token;
33

4-
import com.hedera.hashgraph.tck.methods.JSONRPC2Param;
5-
import com.hedera.hashgraph.tck.methods.sdk.param.CommonTransactionParams;
6-
import com.hedera.hashgraph.tck.util.JSONRPCParamParser;
4+
import org.hiero.tck.methods.JSONRPC2Param;
5+
import org.hiero.tck.methods.sdk.param.CommonTransactionParams;
6+
import org.hiero.tck.util.JSONRPCParamParser;
77
import java.util.List;
88
import java.util.Map;
99
import java.util.Optional;

0 commit comments

Comments
 (0)