Skip to content

Commit 3dc19f4

Browse files
committed
feat: add cosmos/ics23/v1/proofs protobufs
1 parent c1c1a60 commit 3dc19f4

File tree

104 files changed

+29768
-239
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+29768
-239
lines changed

Diff for: libs/es-client/src/client/index.ts

-3
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ export {
2222
export { simulateTx, type SimulateTxParams } from "./apis/simulateTx";
2323
export { RpcClient } from "./clients/RpcClient";
2424
export { type Adapter } from "./models/Adapter";
25-
export { MsgExecuteContract } from "./models/MsgExecuteContract";
26-
export { MsgInstantiateContract } from "./models/MsgInstantiateContract";
2725
export { MsgStoreCode } from "./models/MsgStoreCode";
28-
export { MsgMigrateContract } from "./models/MsgMigrateContract";
2926
export { MsgIbcTransfer } from "./models/MsgIbcTransfer";
3027
export { MsgSend } from "./models/MsgSend";
3128
export { MsgDelegate } from "./models/MsgDelegate";

Diff for: libs/es-client/src/client/models/MsgBeginRedelegate.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { PlainMessage } from "@bufbuild/protobuf";
2-
import { CosmosStakingV1beta1MsgBeginRedelegate as ProtoMsgBeginRedelegate } from "@onsonr/es/protobufs";
2+
import { CosmosStakingV1beta1MsgBeginRedelegate as ProtoMsgBeginRedelegate } from "../../protobufs";
33

44
import { DeepPrettify } from "../../typeutils/prettify";
55
import { Adapter } from "./Adapter";
@@ -25,7 +25,8 @@ export class MsgBeginRedelegate implements Adapter {
2525
validator_src_address: this.data.validatorSrcAddress,
2626
validator_dst_address: this.data.validatorDstAddress,
2727
amount: this.data.amount,
28-
},
28+
},
2929
};
3030
}
31-
}
31+
}
32+

Diff for: libs/es-client/src/client/models/MsgDelegate.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { PlainMessage } from "@bufbuild/protobuf";
2-
import { CosmosStakingV1beta1MsgDelegate as ProtoMsgDelegate } from "@onsonr/es/protobufs";
2+
import { CosmosStakingV1beta1MsgDelegate as ProtoMsgDelegate } from "../..//protobufs";
33

44
import { DeepPrettify } from "../../typeutils/prettify";
55
import { Adapter } from "./Adapter";
@@ -24,7 +24,8 @@ export class MsgDelegate implements Adapter {
2424
delegator_address: this.data.delegatorAddress,
2525
validator_address: this.data.validatorAddress,
2626
amount: this.data.amount,
27-
},
27+
},
2828
};
2929
}
30-
}
30+
}
31+

Diff for: libs/es-client/src/client/models/MsgExecuteContract.ts

-34
This file was deleted.

Diff for: libs/es-client/src/client/models/MsgIbcTransfer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { PlainMessage } from "@bufbuild/protobuf";
2-
import { IbcApplicationsTransferV1MsgTransfer as ProtoMsgIbcTransfer } from "@onsonr/es/protobufs";
2+
import { IbcApplicationsTransferV1MsgTransfer as ProtoMsgIbcTransfer } from "../../protobufs";
33

44
import { DeepPrettify } from "../../typeutils/prettify";
55
import { Adapter } from "./Adapter";

Diff for: libs/es-client/src/client/models/MsgInstantiateContract.ts

-41
This file was deleted.

Diff for: libs/es-client/src/client/models/MsgMigrateContract.ts

-39
This file was deleted.

0 commit comments

Comments
 (0)