-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update message for apps cosmos
- Loading branch information
1 parent
e29bd8b
commit e684a14
Showing
14 changed files
with
102 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import * as Protobuf from 'cosmjs-types/cosmos/authz/v1beta1/authz'; | ||
import { QueryClientImpl } from 'cosmjs-types/cosmos/authz/v1beta1/query'; | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/authz/v1beta1/tx'; | ||
|
||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Authz extends App { | ||
public declare query: QueryClientImpl; | ||
public declare message: MsgClientImpl; | ||
public protobuf = Protobuf; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setQueryClient(QueryClientImpl); | ||
this.setMessage(MsgClientImpl) | ||
} | ||
} |
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,16 +1,19 @@ | ||
import * as Protobuf from 'cosmjs-types/cosmos/bank/v1beta1/bank'; | ||
import { QueryClientImpl } from 'cosmjs-types/cosmos/bank/v1beta1/query'; | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/bank/v1beta1/tx'; | ||
|
||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Bank extends App { | ||
public declare query: QueryClientImpl; | ||
public declare message: MsgClientImpl; | ||
public protobuf = Protobuf; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setQueryClient(QueryClientImpl); | ||
this.setMessage(MsgClientImpl); | ||
} | ||
} |
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,13 @@ | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/crisis/v1beta1/tx'; | ||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Crisis extends App { | ||
public declare message: MsgClientImpl; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setMessage(MsgClientImpl); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import * as Protobuf from 'cosmjs-types/cosmos/evidence/v1beta1/evidence'; | ||
import { QueryClientImpl } from 'cosmjs-types/cosmos/evidence/v1beta1/query'; | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/evidence/v1beta1/tx'; | ||
|
||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Evidence extends App { | ||
public declare query: QueryClientImpl; | ||
public declare message: MsgClientImpl; | ||
public protobuf = Protobuf; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setQueryClient(QueryClientImpl); | ||
this.setMessage(MsgClientImpl); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import * as Protobuf from 'cosmjs-types/cosmos/gov/v1beta1/gov'; | ||
import { QueryClientImpl } from 'cosmjs-types/cosmos/gov/v1beta1/query'; | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/gov/v1beta1/tx'; | ||
|
||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Gov extends App { | ||
public declare query: QueryClientImpl; | ||
public declare message: MsgClientImpl; | ||
public protobuf = Protobuf; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setQueryClient(QueryClientImpl); | ||
this.setMessage(MsgClientImpl); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import * as Protobuf from 'cosmjs-types/cosmos/slashing/v1beta1/slashing'; | ||
import { QueryClientImpl } from 'cosmjs-types/cosmos/slashing/v1beta1/query'; | ||
import * as Protobuf from 'cosmjs-types/cosmos/slashing/v1beta1/slashing'; | ||
import { MsgClientImpl } from 'cosmjs-types/cosmos/slashing/v1beta1/tx'; | ||
|
||
import { provider } from '../providers'; | ||
|
||
import { App } from './app'; | ||
|
||
export class Slashing extends App { | ||
public declare query: QueryClientImpl; | ||
public declare message: MsgClientImpl; | ||
public protobuf = Protobuf; | ||
|
||
constructor(provider: provider) { | ||
super(provider); | ||
this.setQueryClient(QueryClientImpl); | ||
this.setMessage(MsgClientImpl); | ||
} | ||
} |
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