diff --git a/.github/workflows/sub_extended_tests.yml b/.github/workflows/sub_extended_tests.yml
index 72fb740531..821484e061 100644
--- a/.github/workflows/sub_extended_tests.yml
+++ b/.github/workflows/sub_extended_tests.yml
@@ -64,30 +64,6 @@ jobs:
- name: Run Kafka, Postgres, and Sep24 UI with docker compose
run: docker compose -f /home/runner/anchor-platform/service-runner/src/main/resources/docker-compose-test.yaml up -d --build
- # `custody` Tests
- - name: Start `custody` configuration
- env:
- TEST_PROFILE_NAME: custody
- KT_REFERENCE_SERVER_CONFIG: /home/runner/anchor-platform/service-runner/src/main/resources/config/reference-config.yaml
- run: |
- cd /home/runner/anchor-platform
- ./gradlew startServersWithTestProfile &
- echo "PID=$!" >> $GITHUB_ENV
-
- - name: Wait for the sep server to start and get ready
- uses: mydea/action-wait-for-api@v1
- with:
- url: "http://localhost:8080/.well-known/stellar.toml"
- interval: "1"
-
- - name: Run `custody` configuration tests
- env:
- TEST_PROFILE_NAME: custody
- run: |
- cd /home/runner/anchor-platform
- ./gradlew :service-runner:clean :extended-tests:clean :extended-tests:test --tests org.stellar.anchor.platform.suite.CustodyTestSuite
- kill -9 $PID
-
# `rpc` Tests
- name: Start `rpc` configuration
env:
@@ -112,54 +88,6 @@ jobs:
./gradlew :extended-tests:test --tests org.stellar.anchor.platform.suite.RpcTestSuite
kill -9 $PID
- # `auth-apikey-custody` Tests
- - name: Start `auth-apikey-custody` configuration
- env:
- TEST_PROFILE_NAME: auth-apikey-custody
- KT_REFERENCE_SERVER_CONFIG: /home/runner/anchor-platform/service-runner/src/main/resources/config/reference-config.yaml
- run: |
- cd /home/runner/anchor-platform
- ./gradlew startServersWithTestProfile &
- echo "PID=$!" >> $GITHUB_ENV
-
- - name: Wait for the custody server to start and get ready
- uses: mydea/action-wait-for-api@v1
- with:
- url: "http://localhost:8086/health"
- interval: "1"
-
- - name: Run `auth-apikey-custody` configuration tests
- env:
- TEST_PROFILE_NAME: auth-apikey-custody
- run: |
- cd /home/runner/anchor-platform
- ./gradlew :extended-tests:test --tests org.stellar.anchor.platform.suite.AuthApikeyCustodyTestSuite
- kill -9 $PID
-
- # `auth-jwt-custody` Tests
- - name: Start `auth-jwt-custody` configuration
- env:
- TEST_PROFILE_NAME: auth-jwt-custody
- KT_REFERENCE_SERVER_CONFIG: /home/runner/anchor-platform/service-runner/src/main/resources/config/reference-config.yaml
- run: |
- cd /home/runner/anchor-platform
- ./gradlew startServersWithTestProfile &
- echo "PID=$!" >> $GITHUB_ENV
-
- - name: Wait for the custody server to start and get ready
- uses: mydea/action-wait-for-api@v1
- with:
- url: "http://localhost:8086/health"
- interval: "1"
-
- - name: Run `auth-jwt-custody` configuration tests
- env:
- TEST_PROFILE_NAME: auth-jwt-custody
- run: |
- cd /home/runner/anchor-platform
- ./gradlew :extended-tests:test --tests org.stellar.anchor.platform.suite.AuthJwtCustodyTestSuite
- kill -9 $PID
-
# `auth-apikey-platform` Tests
- name: Start `auth-apikey-platform` configuration
env:
diff --git a/.run/Custody Server_ custody.run.xml b/.run/Custody Server_ custody.run.xml
deleted file mode 100644
index 72db2c0a7c..0000000000
--- a/.run/Custody Server_ custody.run.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.run/Test Profile_ auth-apikey-custody.run.xml b/.run/Test Profile_ auth-apikey-custody.run.xml
deleted file mode 100644
index 549362e2d6..0000000000
--- a/.run/Test Profile_ auth-apikey-custody.run.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.run/Test Profile_ auth-jwt-custody.run.xml b/.run/Test Profile_ auth-jwt-custody.run.xml
deleted file mode 100644
index 1497b837d7..0000000000
--- a/.run/Test Profile_ auth-jwt-custody.run.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.run/Test Profile_ custody.run.xml b/.run/Test Profile_ custody.run.xml
deleted file mode 100644
index 2b48aa20a4..0000000000
--- a/.run/Test Profile_ custody.run.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateCustodyTransactionRequest.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateCustodyTransactionRequest.java
deleted file mode 100644
index 579de18dd9..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateCustodyTransactionRequest.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package org.stellar.anchor.api.custody;
-
-import lombok.Builder;
-import lombok.Data;
-
-@Data
-@Builder
-public class CreateCustodyTransactionRequest {
-
- private String id;
- private String memo;
- private String memoType;
- private String protocol;
- private String fromAccount;
- private String toAccount;
- private String amount;
- private String amountFee;
- private String asset;
- private String kind;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionPaymentResponse.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionPaymentResponse.java
deleted file mode 100644
index bcdfded67c..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionPaymentResponse.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package org.stellar.anchor.api.custody;
-
-import lombok.AllArgsConstructor;
-import lombok.Data;
-
-@Data
-@AllArgsConstructor
-public class CreateTransactionPaymentResponse {
- private String id;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionRefundRequest.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionRefundRequest.java
deleted file mode 100644
index 63af493e17..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/CreateTransactionRefundRequest.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.stellar.anchor.api.custody;
-
-import lombok.Builder;
-import lombok.Data;
-
-@Data
-@Builder
-public class CreateTransactionRefundRequest {
- private String memo;
- private String memoType;
- private String amount;
- private String amountFee;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/CustodyExceptionResponse.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/CustodyExceptionResponse.java
deleted file mode 100644
index 41172375cd..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/CustodyExceptionResponse.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package org.stellar.anchor.api.custody;
-
-import lombok.Data;
-
-@Data
-public class CustodyExceptionResponse {
- String rawErrorMessage;
-
- public CustodyExceptionResponse(String rawErrorMessage) {
- this.rawErrorMessage = rawErrorMessage;
- }
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/GenerateDepositAddressResponse.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/GenerateDepositAddressResponse.java
deleted file mode 100644
index a24c5f1402..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/GenerateDepositAddressResponse.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.stellar.anchor.api.custody;
-
-import lombok.AllArgsConstructor;
-import lombok.Data;
-
-@Data
-@AllArgsConstructor
-public class GenerateDepositAddressResponse {
-
- private String address;
- private String memo;
- private String memoType;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmlScreeningResult.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmlScreeningResult.java
deleted file mode 100644
index 53e2f409c4..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmlScreeningResult.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package org.stellar.anchor.api.custody.fireblocks;
-
-import lombok.Data;
-
-@Data
-public class AmlScreeningResult {
- private String provider;
- private String payload;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmountInfo.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmountInfo.java
deleted file mode 100644
index e58cbb0201..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AmountInfo.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package org.stellar.anchor.api.custody.fireblocks;
-
-import lombok.Data;
-
-@Data
-public class AmountInfo {
- private String amount;
- private String requestedAmount;
- private String netAmount;
- private String amountUSD;
-}
diff --git a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AuthorizationGroup.java b/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AuthorizationGroup.java
deleted file mode 100644
index e8325ae065..0000000000
--- a/api-schema/src/main/java/org/stellar/anchor/api/custody/fireblocks/AuthorizationGroup.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package org.stellar.anchor.api.custody.fireblocks;
-
-import java.util.List;
-import lombok.Data;
-
-@Data
-public class AuthorizationGroup {
- private Long th;
- private List