Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate TS client with Telescope #1845

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,6 @@ proto:
@buf format -w
.PHONY: proto

typescript:
@echo "--> Generating TypeScript bindings"
@bash ./scripts/protoc-gen-typescript.sh
.PHONY: typescript

proto-format:
@bash ./scripts/proto-format.sh

Expand Down
36 changes: 19 additions & 17 deletions common/bitcoin/bitcoin.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

114 changes: 57 additions & 57 deletions common/common.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 18 additions & 15 deletions common/ethereum/ethereum.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
syntax = "proto3";
package zetachain.zetacore.authority;

import "authority/policies.proto";
import "gogoproto/gogo.proto";
import "zetachain/authority/policies.proto";

option go_package = "github.com/zeta-chain/zetacore/x/authority/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
syntax = "proto3";
package zetachain.zetacore.authority;

import "authority/policies.proto";
import "cosmos/base/query/v1beta1/pagination.proto";
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "zetachain/authority/policies.proto";

option go_package = "github.com/zeta-chain/zetacore/x/authority/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
syntax = "proto3";
package zetachain.zetacore.authority;

import "authority/policies.proto";
import "gogoproto/gogo.proto";
import "zetachain/authority/policies.proto";

option go_package = "github.com/zeta-chain/zetacore/x/authority/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
syntax = "proto3";
package common;

import "common/bitcoin/bitcoin.proto";
import "common/ethereum/ethereum.proto";
//option (gogoproto.goproto_stringer_all) = false;
//option (gogoproto.stringer_all) = false;
//option (gogoproto.goproto_getters_all) = false;
import "gogoproto/gogo.proto";
import "zetachain/common/bitcoin/bitcoin.proto";
import "zetachain/common/ethereum/ethereum.proto";

option go_package = "github.com/zeta-chain/zetacore/common";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
syntax = "proto3";
package zetachain.zetacore.crosschain;

import "common/common.proto";
import "gogoproto/gogo.proto";
import "zetachain/common/common.proto";

option go_package = "github.com/zeta-chain/zetacore/x/crosschain/types";

Expand Down
Loading
Loading