-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c888b89
commit 0c11071
Showing
5 changed files
with
44 additions
and
5 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
35 changes: 35 additions & 0 deletions
35
packages/sdk-ts/src/core/modules/wasm/exec-args/ExecArgRemoveGridStrategy.ts
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { | ||
dataToExecData, | ||
ExecArgBase, | ||
ExecDataRepresentation, | ||
} from '../ExecArgBase' | ||
|
||
export declare namespace ExecArgRemoveGridStrategy { | ||
export interface Params {} | ||
|
||
export interface Data {} | ||
} | ||
|
||
/** | ||
* @category Contract Exec Arguments | ||
*/ | ||
export default class ExecArgRemoveGridStrategy extends ExecArgBase< | ||
ExecArgRemoveGridStrategy.Params, | ||
ExecArgRemoveGridStrategy.Data | ||
> { | ||
static fromJSON( | ||
params: ExecArgRemoveGridStrategy.Params, | ||
): ExecArgRemoveGridStrategy { | ||
return new ExecArgRemoveGridStrategy(params) | ||
} | ||
|
||
toData(): ExecArgRemoveGridStrategy.Data { | ||
// const { params } = this | ||
|
||
return {} | ||
} | ||
|
||
toExecData(): ExecDataRepresentation<ExecArgRemoveGridStrategy.Data> { | ||
return dataToExecData('remove_strategy', this.toData()) | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2156,10 +2156,10 @@ | |
dependencies: | ||
browser-headers "^0.4.1" | ||
|
||
"@injectivelabs/[email protected].6": | ||
version "1.11.6" | ||
resolved "https://registry.npmjs.org/@injectivelabs/indexer-proto-ts/-/indexer-proto-ts-1.11.6.tgz#cf5f9ee629230dfbba630a3429d1ea021162b118" | ||
integrity sha512-ikw1PCqon51goCsEhzvevgKbMgSNYs9iuzi08lIfeF9kh7mZ8o9yQe4ihd+faf0FjdMwRSHw2LGeuKqbLTTyMg== | ||
"@injectivelabs/[email protected].8": | ||
version "1.11.8" | ||
resolved "https://registry.yarnpkg.com/@injectivelabs/indexer-proto-ts/-/indexer-proto-ts-1.11.8.tgz#fb1850d9aaa305eb895a8fa8ea56c11e31d90569" | ||
integrity sha512-fToWhxF42CBHMw/PXuUZMdkb+Y/MOTTIbCMyhUst+3tTNITLbEdamWZ3vg5+h5fiEfPEqIM4WgFtZCri3NKnHA== | ||
dependencies: | ||
"@injectivelabs/grpc-web" "^0.0.1" | ||
google-protobuf "^3.14.0" | ||
|