Skip to content

Commit eb28b0d

Browse files
committed
Optimize copy.(#11)
1 parent 83e0e44 commit eb28b0d

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add the following code to the `build.gradle.kts` file in the `app` module:
1818
dependencies {
1919
// The extension package must be used with the main framework "dora"
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

docs/es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Añade el siguiente código en el archivo `build.gradle.kts` del módulo `app`:
1818
dependencies {
1919
// El paquete de extensión debe usarse con el framework principal "dora"
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

docs/fr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Ajoutez le code suivant dans le fichier `build.gradle.kts` du module `app` :
1818
dependencies {
1919
// Le package d'extension doit être utilisé avec le framework principal "dora"
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

docs/ko/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencyResolutionManagement {
1818
dependencies {
1919
// 확장 패키지는 메인 프레임워크 "dora"와 함께 사용해야 합니다.
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

docs/zh-cn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencyResolutionManagement {
1818
dependencies {
1919
// 扩展包必须在有主框架dora的情况下使用
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

docs/zh-tw/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencyResolutionManagement {
1818
dependencies {
1919
// 擴展包必須與主框架 "dora" 一起使用
2020
implementation("com.github.dora4:dora:1.3.37")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.15")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.16")
2222
}
2323
```
2424

lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ afterEvaluate {
7878
from(components["release"])
7979
groupId = "com.github.dora4"
8080
artifactId = "dora-walletconnect-support"
81-
version = "2.1.15"
81+
version = "2.1.16"
8282
}
8383
}
8484
}

lib/src/main/java/dora/pay/DoraFund.kt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -841,28 +841,28 @@ object DoraFund {
841841
}
842842
when (status) {
843843
STATUS_CODE_OK -> {
844-
Log.i("sendNativeTransactionRequest", "OK.")
844+
Log.i("sendERC20TransactionRequest", "OK.")
845845
}
846846
STATUS_CODE_ACCESS_KEY_IS_INVALID -> {
847-
Log.e("sendNativeTransactionRequest", "The access key is invalid.")
847+
Log.e("sendERC20TransactionRequest", "The access key is invalid.")
848848
}
849849
STATUS_CODE_PAYMENT_ERROR -> {
850-
Log.e("sendNativeTransactionRequest", "Payment error, please try again.")
850+
Log.e("sendERC20TransactionRequest", "Payment error, please try again.")
851851
}
852852
STATUS_CODE_SINGLE_TRANSACTION_LIMIT -> {
853-
Log.e("sendNativeTransactionRequest", "Single transaction limit exceeded.")
853+
Log.e("sendERC20TransactionRequest", "Single transaction limit exceeded.")
854854
}
855855
STATUS_CODE_MONTHLY_LIMIT -> {
856-
Log.e("sendNativeTransactionRequest", "Monthly limit exceeded.")
856+
Log.e("sendERC20TransactionRequest", "Monthly limit exceeded.")
857857
}
858858
STATUS_CODE_UNSUPPORTED_CHAIN_ID -> {
859-
Log.e("sendNativeTransactionRequest", "Unsupported chainId.")
859+
Log.e("sendERC20TransactionRequest", "Unsupported chainId.")
860860
}
861861
STATUS_CODE_FAILED_TO_FETCH_TOKEN_PRICE -> {
862-
Log.e("sendNativeTransactionRequest", "Failed to fetch token price.")
862+
Log.e("sendERC20TransactionRequest", "Failed to fetch token price.")
863863
}
864864
STATUS_CODE_ACCESS_KEY_IS_EXPIRED -> {
865-
Log.e("sendNativeTransactionRequest", "The access key is expired.")
865+
Log.e("sendERC20TransactionRequest", "The access key is expired.")
866866
}
867867
}
868868
}

lib/src/main/res/values-zh-rCN/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<string name="please_complete_the_payment_in_the_wallet">请在钱包完成支付。</string>
77
<string name="dorafund_provides_technical_support">dorafund提供技术支持</string>
88
<string name="please_connect_wallet_first">请先连接钱包</string>
9-
<string name="please_switch_correct_chain_to_pay_with_tokens">请切换正确的链以支付代币</string>
9+
<string name="please_switch_correct_chain_to_pay_with_tokens">请切换到正确的链以支付代币</string>
1010

1111
<string name="notification_title">Dora Fund专用信道</string>
1212
<string name="building_configration">正在准备连接到专用信道…</string>

0 commit comments

Comments
 (0)