-
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.
Merge pull request #22 from cosmology-tech/restructure
recreate folder structures using boilerplate
- Loading branch information
Showing
360 changed files
with
51,084 additions
and
32,381 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
], | ||
"quotes": [ | ||
"error", | ||
"double", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": true | ||
|
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,13 +1,5 @@ | ||
**/node_modules/ | ||
test-data.ts | ||
test.ts | ||
test.ts | ||
scripts/test.sh | ||
**/.DS_Store | ||
**/dist | ||
**/yarn-error.log | ||
lerna-debug.log | ||
git-modules/ | ||
**/.env.development | ||
.telescope.json | ||
networks/injective/codegen-injective/ | ||
lerna-debug.log |
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,191 @@ | ||
{ | ||
"protoDirs": [ | ||
"./protos" | ||
], | ||
"outPath": "./libs/cosmos-types", | ||
"options": { | ||
"classesUseArrowFunctions": true, | ||
"env": "v-next", | ||
"useSDKTypes": false, | ||
"prototypes": { | ||
"enableRegistryLoader": false, | ||
"enableMessageComposer": false, | ||
"enabled": true, | ||
"parser": { | ||
"keepCase": false | ||
}, | ||
"methods": { | ||
"fromJSON": false, | ||
"toJSON": false, | ||
"encode": true, | ||
"decode": true, | ||
"fromPartial": true, | ||
"toAmino": true, | ||
"fromAmino": true, | ||
"fromProto": false, | ||
"toProto": false, | ||
"fromProtoMsg": false, | ||
"toProtoMsg": false, | ||
"toAminoMsg": true, | ||
"fromAminoMsg": true | ||
}, | ||
"addTypeUrlToDecoders": false, | ||
"addTypeUrlToObjects": true, | ||
"addAminoTypeToObjects": true, | ||
"typingsFormat": { | ||
"duration": "duration", | ||
"timestamp": "date", | ||
"useExact": false, | ||
"useDeepPartial": true, | ||
"num64": "bigint", | ||
"customTypes": { | ||
"useCosmosSDKDec": false | ||
}, | ||
"useTelescopeGeneratedType": true | ||
} | ||
}, | ||
"bundle": { | ||
"enabled": false | ||
}, | ||
"stargateClients": { | ||
"enabled": false | ||
}, | ||
"lcdClients": { | ||
"enabled": false | ||
}, | ||
"rpcClients": { | ||
"enabled": true, | ||
"inline": false, | ||
"extensions": false, | ||
"camelCase": true, | ||
"enabledServices": [ | ||
"Query" | ||
], | ||
"serviceImplement": { | ||
"Msg": { | ||
"type": "Tx" | ||
}, | ||
"Query": { | ||
"type": "Query" | ||
} | ||
}, | ||
"instantOps": [ | ||
{ | ||
"className": "QueryImpl", | ||
"include": { | ||
"serviceTypes": [ | ||
"Query" | ||
], | ||
"patterns": [ | ||
"cosmos.auth.v1beta1.*", | ||
"cosmos.bank.v1beta1.*", | ||
"cosmos.gov.v1beta1.*", | ||
"cosmos.staking.v1beta1.*", | ||
"cosmwasm.wasm.v1.*" | ||
] | ||
}, | ||
"nameMapping": { | ||
"Msg": { | ||
"updateAuthParams": "cosmos.auth.v1beta1.updateParams", | ||
"updateBankParams": "cosmos.bank.v1beta1.updateParams", | ||
"updateGovParams": "cosmos.gov.v1beta1.updateParams", | ||
"updateStakingParams": "cosmos.staking.v1beta1.updateParams", | ||
"updateWasmParams": "cosmwasm.wasm.v1.updateParams" | ||
}, | ||
"Query": { | ||
"getAuthParams": "cosmos.auth.v1beta1.params", | ||
"getBankParams": "cosmos.bank.v1beta1.params", | ||
"getGovParams": "cosmos.gov.v1beta1.params", | ||
"getStakingParams": "cosmos.staking.v1beta1.params", | ||
"getVote": "cosmos.gov.v1beta1.vote", | ||
"getDeposit": "cosmos.gov.v1beta1.deposit", | ||
"getWasmParams": "cosmwasm.wasm.v1.params" | ||
} | ||
} | ||
}, | ||
{ | ||
"className": "StargateImpl", | ||
"include": { | ||
"serviceTypes": [ | ||
"Tx" | ||
], | ||
"patterns": [ | ||
"cosmos.authz.v1beta1.*", | ||
"cosmos.bank.v1beta1.*", | ||
"cosmos.gov.v1beta1.*", | ||
"cosmos.staking.v1beta1.*", | ||
"cosmos.distribution.v1beta1.*", | ||
"ibc.applications.transfer.v1.*" | ||
] | ||
}, | ||
"nameMapping": { | ||
"Msg": { | ||
"updateAuthParams": "cosmos.auth.v1beta1.updateParams", | ||
"updateBankParams": "cosmos.bank.v1beta1.updateParams", | ||
"updateGovParams": "cosmos.gov.v1beta1.updateParams", | ||
"updateStakingParams": "cosmos.staking.v1beta1.updateParams", | ||
"updateIBCTransferParams": "ibc.applications.transfer.v1.updateParams", | ||
"updateWasmParams": "cosmwasm.wasm.v1.updateParams" | ||
}, | ||
"Query": { | ||
"getAuthParams": "cosmos.auth.v1beta1.params", | ||
"getBankParams": "cosmos.bank.v1beta1.params", | ||
"getGovParams": "cosmos.gov.v1beta1.params", | ||
"getStakingParams": "cosmos.staking.v1beta1.params", | ||
"getVote": "cosmos.gov.v1beta1.vote", | ||
"getDeposit": "cosmos.gov.v1beta1.deposit", | ||
"getWasmParams": "cosmwasm.wasm.v1.params" | ||
} | ||
} | ||
}, | ||
{ | ||
"className": "CosmWasmStargateImpl", | ||
"include": { | ||
"serviceTypes": [ | ||
"Tx" | ||
], | ||
"patterns": [ | ||
"cosmos.authz.v1beta1.*", | ||
"cosmos.bank.v1beta1.*", | ||
"cosmos.gov.v1beta1.*", | ||
"cosmos.staking.v1beta1.*", | ||
"cosmos.distribution.v1beta1.*", | ||
"ibc.applications.transfer.v1.*", | ||
"cosmwasm.wasm.v1.*" | ||
] | ||
}, | ||
"nameMapping": { | ||
"Msg": { | ||
"updateAuthParams": "cosmos.auth.v1beta1.updateParams", | ||
"updateBankParams": "cosmos.bank.v1beta1.updateParams", | ||
"updateGovParams": "cosmos.gov.v1beta1.updateParams", | ||
"updateStakingParams": "cosmos.staking.v1beta1.updateParams", | ||
"updateIBCTransferParams": "ibc.applications.transfer.v1.updateParams", | ||
"updateWasmParams": "cosmwasm.wasm.v1.updateParams" | ||
}, | ||
"Query": { | ||
"getAuthParams": "cosmos.auth.v1beta1.params", | ||
"getBankParams": "cosmos.bank.v1beta1.params", | ||
"getGovParams": "cosmos.gov.v1beta1.params", | ||
"getStakingParams": "cosmos.staking.v1beta1.params", | ||
"getVote": "cosmos.gov.v1beta1.vote", | ||
"getDeposit": "cosmos.gov.v1beta1.deposit", | ||
"getWasmParams": "cosmwasm.wasm.v1.params" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"interfaces": { | ||
"enabled": true, | ||
"useGlobalDecoderRegistry": true, | ||
"useUnionTypes": true | ||
}, | ||
"aminoEncoding": { | ||
"enabled": true, | ||
"useLegacyInlineEncoding": false, | ||
"disableMsgTypes": false, | ||
"useProtoOptionality": true | ||
} | ||
} | ||
} |
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
Submodule main
added at
43dcd4
Submodule main
added at
6749af
Submodule main
added at
05ff7a
Submodule v0.50.x
added at
aeb1e8
Submodule main
added at
6eec97
Submodule main
added at
061a56
Submodule master
added at
69d869
Submodule main
added at
21b048
Submodule master
added at
f67b89
Submodule master
added at
573205
Submodule master
added at
729475
Submodule main
added at
bbf522
Submodule main
added at
35581c
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,16 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
module.exports = { | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
transform: { | ||
"^.+\\.tsx?$": [ | ||
"ts-jest", | ||
'^.+\\.tsx?$': [ | ||
'ts-jest', | ||
{ | ||
babelConfig: false, | ||
tsconfig: "tsconfig.json", | ||
tsconfig: 'tsconfig.json', | ||
}, | ||
], | ||
}, | ||
transformIgnorePatterns: [`/node_modules/*`], | ||
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], | ||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], | ||
}; |
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 +1 @@ | ||
export {} | ||
export {}; |
Oops, something went wrong.