-
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.
* changing get signer implementation * cleanup * more build cleanup
- Loading branch information
1 parent
dcc3b0d
commit 41b2cee
Showing
58 changed files
with
374 additions
and
162 deletions.
There are no files selected for viewing
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
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
3 changes: 0 additions & 3 deletions
3
models/src/main/kotlin/io/provenance/api/models/account/AccountInfo.kt
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,12 +1,9 @@ | ||
package io.provenance.api.models.account | ||
|
||
import io.provenance.scope.contract.proto.Specifications | ||
import java.util.UUID | ||
|
||
data class AccountInfo( | ||
val originatorUuid: UUID, | ||
val keyRingIndex: Int = 0, | ||
val keyIndex: Int = 0, | ||
val isTestNet: Boolean = true, | ||
val partyType: Specifications.PartyType = Specifications.PartyType.OWNER, | ||
) |
9 changes: 9 additions & 0 deletions
9
models/src/main/kotlin/io/provenance/api/models/account/Participant.kt
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,9 @@ | ||
package io.provenance.api.models.account | ||
|
||
import io.provenance.scope.contract.proto.Specifications | ||
import java.util.UUID | ||
|
||
data class Participant( | ||
val uuid: UUID, | ||
val partyType: Specifications.PartyType, | ||
) |
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
4 changes: 2 additions & 2 deletions
4
models/src/main/kotlin/io/provenance/api/models/cee/ExecuteContractRequest.kt
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,9 +1,9 @@ | ||
package io.provenance.api.models.cee | ||
|
||
import io.provenance.api.models.account.AccountInfo | ||
import io.provenance.api.models.account.Participant | ||
|
||
data class ExecuteContractRequest( | ||
val config: ExecuteContractConfig, | ||
val records: Map<String, Any>, | ||
val participants: List<AccountInfo> = emptyList() | ||
val participants: List<Participant> = emptyList() | ||
) |
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
2 changes: 1 addition & 1 deletion
2
...e/tx/model/CreateTxOnboardAssetRequest.kt → ...models/p8e/CreateTxOnboardAssetRequest.kt
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
5 changes: 2 additions & 3 deletions
5
...se/provenance/tx/model/CreateTxRequest.kt → ...venance/api/models/p8e/CreateTxRequest.kt
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
10 changes: 10 additions & 0 deletions
10
models/src/main/kotlin/io/provenance/api/models/p8e/ExecuteTxRequest.kt
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,10 @@ | ||
package io.provenance.api.models.p8e | ||
|
||
import io.provenance.api.models.account.AccountInfo | ||
|
||
data class ExecuteTxRequest( | ||
val account: AccountInfo = AccountInfo(), | ||
val chainId: String, | ||
val nodeEndpoint: String, | ||
val tx: TxBody, | ||
) |
2 changes: 1 addition & 1 deletion
2
...in/usecase/common/model/PermissionInfo.kt → ...ovenance/api/models/p8e/PermissionInfo.kt
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
...ing/domain/usecase/common/model/TxBody.kt → ...in/io/provenance/api/models/p8e/TxBody.kt
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
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
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
9 changes: 9 additions & 0 deletions
9
.../provenance/onboarding/domain/usecase/cee/approve/models/ApproveContractRequestWrapper.kt
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,9 @@ | ||
package io.provenance.onboarding.domain.usecase.cee.approve.models | ||
|
||
import io.provenance.api.models.cee.ApproveContractRequest | ||
import java.util.UUID | ||
|
||
data class ApproveContractRequestWrapper( | ||
val uuid: UUID, | ||
val request: ApproveContractRequest | ||
) |
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
7 changes: 5 additions & 2 deletions
7
...in/io/provenance/onboarding/domain/usecase/cee/common/client/model/CreateClientRequest.kt
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,10 +1,13 @@ | ||
package io.provenance.onboarding.domain.usecase.cee.common.client.model | ||
|
||
import io.provenance.api.models.account.AccountInfo | ||
import io.provenance.api.models.account.Participant | ||
import io.provenance.api.models.eos.ObjectStoreConfig | ||
import java.util.UUID | ||
|
||
data class CreateClientRequest( | ||
val account: AccountInfo, | ||
val uuid: UUID, | ||
val account: AccountInfo = AccountInfo(), | ||
val client: ObjectStoreConfig, | ||
val affiliates: List<AccountInfo> = emptyList(), | ||
val affiliates: List<Participant> = emptyList(), | ||
) |
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
9 changes: 9 additions & 0 deletions
9
...o/provenance/onboarding/domain/usecase/cee/execute/model/ExecuteContractRequestWrapper.kt
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,9 @@ | ||
package io.provenance.onboarding.domain.usecase.cee.execute.model | ||
|
||
import io.provenance.api.models.cee.ExecuteContractRequest | ||
import java.util.UUID | ||
|
||
data class ExecuteContractRequestWrapper( | ||
val uuid: UUID, | ||
val request: ExecuteContractRequest, | ||
) |
Oops, something went wrong.