diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a003607888..968acfe32e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -67,6 +67,7 @@ dependencies { implementation(projects.domain.staking) implementation(projects.domain.walletConnect) implementation(projects.domain.markets) + implementation(projects.domain.manageTokens) implementation(projects.common) implementation(projects.common.routing) diff --git a/domain/manage-tokens/.gitignore b/domain/manage-tokens/.gitignore new file mode 100644 index 0000000000..42afabfd2a --- /dev/null +++ b/domain/manage-tokens/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/domain/manage-tokens/build.gradle.kts b/domain/manage-tokens/build.gradle.kts new file mode 100644 index 0000000000..a0f0ac3368 --- /dev/null +++ b/domain/manage-tokens/build.gradle.kts @@ -0,0 +1,9 @@ +plugins { + alias(deps.plugins.kotlin.jvm) + id("configuration") +} + +dependencies { + api(projects.domain.manageTokens.models) + api(projects.domain.core) +} \ No newline at end of file diff --git a/domain/manage-tokens/models/.gitignore b/domain/manage-tokens/models/.gitignore new file mode 100644 index 0000000000..42afabfd2a --- /dev/null +++ b/domain/manage-tokens/models/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/domain/manage-tokens/models/build.gradle.kts b/domain/manage-tokens/models/build.gradle.kts new file mode 100644 index 0000000000..7ff7fb7522 --- /dev/null +++ b/domain/manage-tokens/models/build.gradle.kts @@ -0,0 +1,4 @@ +plugins { + alias(deps.plugins.kotlin.jvm) + id("configuration") +} \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 0d6be44673..a4720852bf 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -226,6 +226,8 @@ include(":domain:staking:models") include(":domain:wallet-connect") include(":domain:markets") include(":domain:markets:models") +include(":domain:manage-tokens") +include(":domain:manage-tokens:models") // endregion Domain modules // region Data modules