Skip to content

Commit

Permalink
lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
Seonghun committed Aug 2, 2023
1 parent 73c6d72 commit 677d8a7
Show file tree
Hide file tree
Showing 46 changed files with 181 additions and 186 deletions.
Binary file modified .DS_Store
Binary file not shown.
Empty file modified README.md
100644 → 100755
Empty file.
Binary file modified app/.DS_Store
100644 → 100755
Binary file not shown.
Empty file modified app/.gitignore
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion app/build.gradle
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.android.application'
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}

Expand Down
Empty file modified app/proguard-rules.pro
100644 → 100755
Empty file.
Binary file modified app/src/.DS_Store
100644 → 100755
Binary file not shown.
Empty file.
Empty file modified app/src/main/AndroidManifest.xml
100644 → 100755
Empty file.
3 changes: 1 addition & 2 deletions app/src/main/java/com/example/android_sdk/MainActivity.kt
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.example.android_sdk

import account
import android.app.Application
import android.content.Context
import android.os.Bundle
Expand Down Expand Up @@ -41,7 +40,7 @@ class MainActivity : AppCompatActivity(), CoroutineScope by MainScope() {
// Using coroutines to avoid blocking the UI thread
launch {
withContext(Dispatchers.IO) {
account()
// account()
// transaction()
// var getNFTsByWallet= getNFTsByWallet(
// network = network,
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/com/example/android_sdk/account.kt
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ suspend fun account() = runBlocking<Unit> {
val networkArray = arrayOf("ethereum", "cypress", "polygon", "bnb")
val network = arrayOf("ethereum","cypress")
val mnemonic = "ripple shrimp endorse company horror benefit boring click enter clog grab aware";
val privateKey = "0x8d993503bb78ab5abfdad2b194bad4ae7cba9fd4590e538d232ba84c41765887";
val privateKey = "";
val token_address = "0xab40804c3da6812f41d7744fde8d6b7e8a7c30d5"
val account = "0x45a24682cb6e4f5e31e43b5e4213f21e6c3fa0f2"
val owner = "abcuser"
Expand Down Expand Up @@ -119,7 +119,7 @@ suspend fun account() = runBlocking<Unit> {
//// networkString,
//// token_address
// "bnb",
// "0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A"
// ""
// )
// }.await()
// println(
Expand All @@ -142,7 +142,7 @@ suspend fun account() = runBlocking<Unit> {
// val getMainnetCoinBalance = async {
// getBalanceAsync(
// "ethereum",
// "0x1E555A5fa9ADcf4849f1A72A8678520e58F7e7Cc"
// ""
//// networkString,
//// account
// )
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/example/android_sdk/dbserver.kt
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ class DBQueryExector(private val connection: Connection){

return null
}
}
}
Empty file modified app/src/main/java/com/example/android_sdk/global.kt
100644 → 100755
Empty file.
Loading

0 comments on commit 677d8a7

Please sign in to comment.