-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing wrong migration from helper to indexer
- Loading branch information
Showing
20 changed files
with
71 additions
and
139 deletions.
There are no files selected for viewing
53 changes: 0 additions & 53 deletions
53
...va-api-helper/src/main/java/com/syntifi/near/api/helper/service/NearKitWalletService.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...-helper/src/test/java/com/syntifi/near/api/helper/service/NearKitWalletServiceHelper.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
...pi-helper/src/test/java/com/syntifi/near/api/helper/service/NearKitWalletServiceTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...near/api/helper/model/RecentActivity.java → ...ear/api/indexer/model/RecentActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...helper/model/RecentActivityAccessKey.java → ...ndexer/model/RecentActivityAccessKey.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...r/api/helper/model/RecentActivityArg.java → .../api/indexer/model/RecentActivityArg.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.syntifi.near.api.helper.model; | ||
package com.syntifi.near.api.indexer.model; | ||
|
||
/** | ||
* RecentActivityArg | ||
|
2 changes: 1 addition & 1 deletion
2
...helper/model/RecentActivityArgAddKey.java → ...ndexer/model/RecentActivityArgAddKey.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...model/RecentActivityArgCreateAccount.java → ...model/RecentActivityArgCreateAccount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...model/RecentActivityArgDeleteAccount.java → ...model/RecentActivityArgDeleteAccount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...per/model/RecentActivityArgDeleteKey.java → ...xer/model/RecentActivityArgDeleteKey.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...odel/RecentActivityArgDeployContract.java → ...odel/RecentActivityArgDeployContract.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../model/RecentActivityArgFunctionCall.java → .../model/RecentActivityArgFunctionCall.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../helper/model/RecentActivityArgStake.java → ...indexer/model/RecentActivityArgStake.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lper/model/RecentActivityArgTransfer.java → ...exer/model/RecentActivityArgTransfer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../api/helper/model/RecentActivityItem.java → ...api/indexer/model/RecentActivityItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...elper/model/RecentActivityPermission.java → ...dexer/model/RecentActivityPermission.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...main/java/com/syntifi/near/api/indexer/service/exception/NearIndexerServiceException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.syntifi.near.api.indexer.service.exception; | ||
|
||
|
||
/** | ||
* Thrown on Near helper service error | ||
* | ||
* @author Alexandre Carvalho | ||
* @author Andre Bertolace | ||
* @since 0.2.0 | ||
*/ | ||
public class NearIndexerServiceException extends RuntimeException { | ||
public NearIndexerServiceException(String message) { | ||
super(message); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters