Skip to content

Commit

Permalink
generate
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Sep 20, 2024
1 parent fbb0c21 commit 9557a57
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/openapi/openapi.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57303,6 +57303,8 @@ definitions:
type: string
tx_finalization_status:
$ref: '#/definitions/crosschainTxFinalizationStatus'
is_arbitrary_call:
type: boolean
crosschainOutboundTracker:
type: object
properties:
Expand Down
1 change: 1 addition & 0 deletions docs/spec/crosschain/messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ message MsgVoteInbound {
uint64 event_index = 15;
ProtocolContractVersion protocol_contract_version = 16;
RevertOptions revert_options = 17;
bool is_arbitrary_call = 18;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ export declare class OutboundParams extends Message<OutboundParams> {
*/
txFinalizationStatus: TxFinalizationStatus;

/**
* @generated from field: bool is_arbitrary_call = 24;
*/
isArbitraryCall: boolean;

constructor(data?: PartialMessage<OutboundParams>);

static readonly runtime: typeof proto3;
Expand Down
5 changes: 5 additions & 0 deletions typescript/zetachain/zetacore/crosschain/tx_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,11 @@ export declare class MsgVoteInbound extends Message<MsgVoteInbound> {
*/
revertOptions?: RevertOptions;

/**
* @generated from field: bool is_arbitrary_call = 18;
*/
isArbitraryCall: boolean;

constructor(data?: PartialMessage<MsgVoteInbound>);

static readonly runtime: typeof proto3;
Expand Down

0 comments on commit 9557a57

Please sign in to comment.