├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── release-artifacts.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── audits └── chainlight │ └── 20230719.pdf ├── contracts ├── terraswap_factory │ ├── .cargo │ │ └── config │ ├── .editorconfig │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── schema.rs │ ├── schema │ │ ├── config_response.json │ │ ├── execute_msg.json │ │ ├── instantiate_msg.json │ │ ├── pair_info.json │ │ ├── pairs_response.json │ │ └── query_msg.json │ └── src │ │ ├── contract.rs │ │ ├── lib.rs │ │ ├── response.proto │ │ ├── response.rs │ │ ├── state.rs │ │ └── testing.rs ├── terraswap_moon │ ├── .cargo │ │ └── config │ ├── .editorconfig │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── schema.rs │ ├── rustfmt.toml │ ├── schema │ │ ├── cw20_hook_msg.json │ │ ├── execute_msg.json │ │ ├── instantiate_msg.json │ │ ├── migrate_msg.json │ │ ├── pair_info.json │ │ ├── pool_response.json │ │ ├── query_msg.json │ │ ├── reverse_simulation_response.json │ │ └── simulation_response.json │ └── src │ │ ├── contract.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── response.proto │ │ ├── response.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── util.rs ├── terraswap_pair │ ├── .cargo │ │ └── config │ ├── .editorconfig │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── schema.rs │ ├── rustfmt.toml │ ├── schema │ │ ├── cw20_hook_msg.json │ │ ├── execute_msg.json │ │ ├── instantiate_msg.json │ │ ├── migrate_msg.json │ │ ├── pair_info.json │ │ ├── pool_response.json │ │ ├── query_msg.json │ │ ├── reverse_simulation_response.json │ │ └── simulation_response.json │ └── src │ │ ├── contract.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── response.proto │ │ ├── response.rs │ │ ├── state.rs │ │ └── testing.rs ├── terraswap_router │ ├── .cargo │ │ └── config │ ├── .editorconfig │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── schema.rs │ ├── rustfmt.toml │ ├── schema │ │ ├── config_response.json │ │ ├── cw20_hook_msg.json │ │ ├── execute_msg.json │ │ ├── instantiate_msg.json │ │ └── query_msg.json │ └── src │ │ ├── contract.rs │ │ ├── lib.rs │ │ ├── operations.rs │ │ ├── querier.rs │ │ ├── state.rs │ │ └── testing │ │ ├── mod.rs │ │ └── tests.rs └── terraswap_token │ ├── .cargo │ └── config │ ├── Cargo.toml │ ├── README.md │ ├── examples │ └── schema.rs │ ├── schema │ ├── all_accounts_response.json │ ├── all_allowances_response.json │ ├── allowance_response.json │ ├── balance_response.json │ ├── cw20_execute_msg.json │ ├── instantiate_msg.json │ ├── query_msg.json │ └── token_info_response.json │ └── src │ ├── contract.rs │ └── lib.rs └── packages └── classic_terraswap ├── .cargo └── config ├── Cargo.toml ├── README.md ├── examples └── schema.rs ├── schema ├── asset.json ├── asset_info.json └── pair_info.json └── src ├── asset.rs ├── factory.rs ├── lib.rs ├── mock_querier.rs ├── moon.rs ├── pair.rs ├── querier.rs ├── router.rs ├── testing.rs ├── token.rs └── util.rs /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.github/workflows/release-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/README.md -------------------------------------------------------------------------------- /audits/chainlight/20230719.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/audits/chainlight/20230719.pdf -------------------------------------------------------------------------------- /contracts/terraswap_factory/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/.cargo/config -------------------------------------------------------------------------------- /contracts/terraswap_factory/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/.editorconfig -------------------------------------------------------------------------------- /contracts/terraswap_factory/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/Cargo.toml -------------------------------------------------------------------------------- /contracts/terraswap_factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/README.md -------------------------------------------------------------------------------- /contracts/terraswap_factory/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/examples/schema.rs -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/config_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/config_response.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/execute_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/pair_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/pair_info.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/pairs_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/pairs_response.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/contract.rs -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/lib.rs -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/response.proto -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/response.rs -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/state.rs -------------------------------------------------------------------------------- /contracts/terraswap_factory/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_factory/src/testing.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/.cargo/config -------------------------------------------------------------------------------- /contracts/terraswap_moon/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/.editorconfig -------------------------------------------------------------------------------- /contracts/terraswap_moon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/Cargo.toml -------------------------------------------------------------------------------- /contracts/terraswap_moon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/README.md -------------------------------------------------------------------------------- /contracts/terraswap_moon/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/examples/schema.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/rustfmt.toml -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/cw20_hook_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/cw20_hook_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/execute_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/migrate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/migrate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/pair_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/pair_info.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/pool_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/pool_response.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/reverse_simulation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/reverse_simulation_response.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/schema/simulation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/schema/simulation_response.json -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/contract.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/error.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/lib.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/response.proto -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/response.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/state.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/testing.rs -------------------------------------------------------------------------------- /contracts/terraswap_moon/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_moon/src/util.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/.cargo/config -------------------------------------------------------------------------------- /contracts/terraswap_pair/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/.editorconfig -------------------------------------------------------------------------------- /contracts/terraswap_pair/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/Cargo.toml -------------------------------------------------------------------------------- /contracts/terraswap_pair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/README.md -------------------------------------------------------------------------------- /contracts/terraswap_pair/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/examples/schema.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/rustfmt.toml -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/cw20_hook_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/cw20_hook_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/execute_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/migrate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/migrate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/pair_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/pair_info.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/pool_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/pool_response.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/reverse_simulation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/reverse_simulation_response.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/schema/simulation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/schema/simulation_response.json -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/contract.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/error.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/lib.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/response.proto -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/response.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/state.rs -------------------------------------------------------------------------------- /contracts/terraswap_pair/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_pair/src/testing.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/.cargo/config -------------------------------------------------------------------------------- /contracts/terraswap_router/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/.editorconfig -------------------------------------------------------------------------------- /contracts/terraswap_router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/.gitignore -------------------------------------------------------------------------------- /contracts/terraswap_router/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/Cargo.toml -------------------------------------------------------------------------------- /contracts/terraswap_router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/README.md -------------------------------------------------------------------------------- /contracts/terraswap_router/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/examples/schema.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/rustfmt.toml -------------------------------------------------------------------------------- /contracts/terraswap_router/schema/config_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/schema/config_response.json -------------------------------------------------------------------------------- /contracts/terraswap_router/schema/cw20_hook_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/schema/cw20_hook_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_router/schema/execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/schema/execute_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_router/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_router/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_router/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/contract.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/lib.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/src/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/operations.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/src/querier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/querier.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/state.rs -------------------------------------------------------------------------------- /contracts/terraswap_router/src/testing/mod.rs: -------------------------------------------------------------------------------- 1 | mod tests; 2 | -------------------------------------------------------------------------------- /contracts/terraswap_router/src/testing/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_router/src/testing/tests.rs -------------------------------------------------------------------------------- /contracts/terraswap_token/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/.cargo/config -------------------------------------------------------------------------------- /contracts/terraswap_token/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/Cargo.toml -------------------------------------------------------------------------------- /contracts/terraswap_token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/README.md -------------------------------------------------------------------------------- /contracts/terraswap_token/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/examples/schema.rs -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/all_accounts_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/all_accounts_response.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/all_allowances_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/all_allowances_response.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/allowance_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/allowance_response.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/balance_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/balance_response.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/cw20_execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/cw20_execute_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/terraswap_token/schema/token_info_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/schema/token_info_response.json -------------------------------------------------------------------------------- /contracts/terraswap_token/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/contracts/terraswap_token/src/contract.rs -------------------------------------------------------------------------------- /contracts/terraswap_token/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod contract; 2 | -------------------------------------------------------------------------------- /packages/classic_terraswap/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/.cargo/config -------------------------------------------------------------------------------- /packages/classic_terraswap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/Cargo.toml -------------------------------------------------------------------------------- /packages/classic_terraswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/README.md -------------------------------------------------------------------------------- /packages/classic_terraswap/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/examples/schema.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/schema/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/schema/asset.json -------------------------------------------------------------------------------- /packages/classic_terraswap/schema/asset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/schema/asset_info.json -------------------------------------------------------------------------------- /packages/classic_terraswap/schema/pair_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/schema/pair_info.json -------------------------------------------------------------------------------- /packages/classic_terraswap/src/asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/asset.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/factory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/factory.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/lib.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/mock_querier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/mock_querier.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/moon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/moon.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/pair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/pair.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/querier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/querier.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/router.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/testing.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/token.rs -------------------------------------------------------------------------------- /packages/classic_terraswap/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/classic-terraswap/HEAD/packages/classic_terraswap/src/util.rs --------------------------------------------------------------------------------