Skip to content

Commit

Permalink
fix: Add method to CI and fix protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskp committed Feb 1, 2024
1 parent b0efb54 commit 3685b2b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/connect-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
uses: ./.github/workflows/connect-test-params.yml
with:
test-pattern: methods
methods: "cardanoGetAddress,cardanoGetNativeScriptHash,cardanoGetPublicKey,cardanoSignTransaction"
methods: "cardanoGetAddress,cardanoGetNativeScriptHash,cardanoGetPublicKey,cardanoSignTransaction,cardanoSignMessage"

eos:
needs: [build]
Expand Down
2 changes: 1 addition & 1 deletion ci/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"signTransaction",
"getAccountInfo,getAccountDescriptor,getAddress,getPublicKey,signMessage,verifyMessage,composeTransaction,getOwnershipId,getOwnershipProof",
"stellarGetAddress,stellarSignTransaction",
"cardanoGetAddress,cardanoGetNativeScriptHash,cardanoGetPublicKey,cardanoSignTransaction",
"cardanoGetAddress,cardanoGetNativeScriptHash,cardanoGetPublicKey,cardanoSignTransaction,cardanoSignMessage",
"eosGetPublicKey,eosSignTransaction",
"ethereumGetAddress,ethereumGetPublicKey,ethereumSignMessage,ethereumSignTransaction,ethereumVerifyMessage,ethereumSignTypedData",
"nemGetAddress,nemSignTransaction",
Expand Down
17 changes: 0 additions & 17 deletions packages/protobuf/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -7227,19 +7227,6 @@
}
}
},
"StellarClaimClaimableBalanceOp": {
"fields": {
"source_account": {
"type": "string",
"id": 1
},
"balance_id": {
"rule": "required",
"type": "bytes",
"id": 2
}
}
},
"StellarSignedTx": {
"fields": {
"public_key": {
Expand Down Expand Up @@ -8344,9 +8331,6 @@
"MessageType_StellarPathPaymentStrictSendOp": {
"(wire_in)": true
},
"MessageType_StellarClaimClaimableBalanceOp": {
"(wire_in)": true
},
"MessageType_StellarSignedTx": {
"(wire_out)": true
},
Expand Down Expand Up @@ -8795,7 +8779,6 @@
"MessageType_StellarBumpSequenceOp": 221,
"MessageType_StellarManageBuyOfferOp": 222,
"MessageType_StellarPathPaymentStrictSendOp": 223,
"MessageType_StellarClaimClaimableBalanceOp": 225,
"MessageType_StellarSignedTx": 230,
"MessageType_CardanoGetPublicKey": 305,
"MessageType_CardanoPublicKey": 306,
Expand Down
7 changes: 0 additions & 7 deletions packages/protobuf/src/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2254,12 +2254,6 @@ export type StellarBumpSequenceOp = {
bump_to: UintType;
};

// StellarClaimClaimableBalanceOp
export type StellarClaimClaimableBalanceOp = {
source_account?: string;
balance_id: string;
};

// StellarSignedTx
export type StellarSignedTx = {
public_key: string;
Expand Down Expand Up @@ -2659,7 +2653,6 @@ export type MessageType = {
StellarAccountMergeOp: StellarAccountMergeOp;
StellarManageDataOp: StellarManageDataOp;
StellarBumpSequenceOp: StellarBumpSequenceOp;
StellarClaimClaimableBalanceOp: StellarClaimClaimableBalanceOp;
StellarSignedTx: StellarSignedTx;
TezosGetAddress: TezosGetAddress;
TezosAddress: TezosAddress;
Expand Down

0 comments on commit 3685b2b

Please sign in to comment.