-
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.
Infinity Swap contract changes for indexer (#34)
* Make infinity-swap-contracts repo a submodule * Move schema files to their own dir * Fix bug, cleanup package * Add linting to infinity-swap pkg * Initial release of infinity-swap-core wasm exporter pkg * Prepare contract events for indexer, refactor deposit nfts, fix tests * Minor events addition to infinity global * Write core pair migrate logic * Contract changes * Update CI * Fix eslint * Fix github workflow * Lint * Lint * Lint * Lint * Add tsconfig to git submodule * Add bun-types dep * Add bun install * Add @types/lodash
- Loading branch information
Showing
126 changed files
with
1,706 additions
and
13,881 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,10 +1,11 @@ | ||
use cosmwasm_schema::write_api; | ||
use infinity_factory::msg::{ExecuteMsg, InstantiateMsg, QueryMsg}; | ||
use infinity_factory::msg::{ExecuteMsg, InstantiateMsg, QueryMsg, SudoMsg}; | ||
|
||
fn main() { | ||
write_api! { | ||
instantiate: InstantiateMsg, | ||
execute: ExecuteMsg, | ||
query: QueryMsg, | ||
sudo: SudoMsg | ||
} | ||
} |
Oops, something went wrong.