├── .github └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── Makefile ├── Makefile_common.mk ├── README.md ├── assets └── logo-clp.png ├── docs ├── clp-flash-loans.md ├── ethereum-near-bridge.md ├── lp-mechanisc │ └── core_lp.md ├── megapool.md ├── nearclp-usage.md ├── nearswap.md ├── otc-trading.md └── research.md ├── nearswap ├── .cargo │ └── config ├── .vscode │ ├── launch.json │ └── tasks.json ├── Cargo.toml ├── Makefile ├── README.md ├── nearswap-deployment.org ├── notes.org ├── src │ ├── constants.rs │ ├── deposit.rs │ ├── errors.rs │ ├── ft_token.rs │ ├── internal.rs │ ├── lib.rs │ ├── pool.rs │ ├── storage_management.rs │ ├── twap.rs │ ├── types.rs │ ├── util.rs │ └── view.rs └── tests │ ├── create_pool.rs │ ├── fee_simulation.rs │ ├── simulation_utils.rs │ └── swap.rs ├── other-contracts ├── .gitignore └── sample-token │ ├── Cargo.toml │ ├── Makefile │ └── src │ └── lib.rs ├── rainbowbridge ├── ERC-20WebApp │ ├── .env │ ├── networks.js │ ├── package.json │ └── src │ │ ├── css │ │ ├── a11y.css │ │ ├── balance.css │ │ ├── dropdown.css │ │ ├── global.css │ │ ├── menu-icon.css │ │ └── title.css │ │ ├── img │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── social-preview.png │ │ ├── index.html │ │ ├── js │ │ ├── authEthereum.js │ │ ├── domHelpers.js │ │ ├── index.js │ │ └── render.js │ │ └── site.webmanifest ├── TetherUSD │ ├── README.MD │ └── tetherconfig.json ├── testnet │ ├── README.MD │ ├── config.json │ └── generic-config.json └── wETH │ ├── README.MD │ └── wethconfig.json ├── shared-test └── test.near.json └── target └── doc └── nearswap ├── all.html ├── index.html ├── macro.env_log!.html ├── macro.env_log.html ├── sidebar-items.js ├── struct.NearCLP.html ├── struct.Pool.html ├── struct.PoolInfo.html ├── types ├── ext_mft_rec │ ├── fn.on_mft_receive.html │ ├── index.html │ └── sidebar-items.js ├── ext_nep21 │ ├── fn.transfer.html │ ├── fn.transfer_from.html │ ├── index.html │ └── sidebar-items.js ├── index.html └── sidebar-items.js └── util ├── constant.MAX_GAS.html ├── constant.NDENOM.html ├── constant.NEP21_STORAGE_DEPOSIT.html ├── constant.STORAGE_BYTE_PRICE.html ├── constant.TGAS.html ├── fn.assert_account_is_valid.html ├── fn.is_promise_success.html ├── fn.yton.html ├── index.html ├── sidebar-items.js └── struct.u256.html /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/Makefile_common.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo-clp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/assets/logo-clp.png -------------------------------------------------------------------------------- /docs/clp-flash-loans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/clp-flash-loans.md -------------------------------------------------------------------------------- /docs/ethereum-near-bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/ethereum-near-bridge.md -------------------------------------------------------------------------------- /docs/lp-mechanisc/core_lp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/lp-mechanisc/core_lp.md -------------------------------------------------------------------------------- /docs/megapool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/megapool.md -------------------------------------------------------------------------------- /docs/nearclp-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/nearclp-usage.md -------------------------------------------------------------------------------- /docs/nearswap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/nearswap.md -------------------------------------------------------------------------------- /docs/otc-trading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/otc-trading.md -------------------------------------------------------------------------------- /docs/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/docs/research.md -------------------------------------------------------------------------------- /nearswap/.cargo/config: -------------------------------------------------------------------------------- 1 | [build] 2 | rustflags = ["-C", "link-args=-s"] 3 | -------------------------------------------------------------------------------- /nearswap/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/.vscode/launch.json -------------------------------------------------------------------------------- /nearswap/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/.vscode/tasks.json -------------------------------------------------------------------------------- /nearswap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/Cargo.toml -------------------------------------------------------------------------------- /nearswap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/Makefile -------------------------------------------------------------------------------- /nearswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/README.md -------------------------------------------------------------------------------- /nearswap/nearswap-deployment.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/nearswap-deployment.org -------------------------------------------------------------------------------- /nearswap/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/notes.org -------------------------------------------------------------------------------- /nearswap/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/constants.rs -------------------------------------------------------------------------------- /nearswap/src/deposit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/deposit.rs -------------------------------------------------------------------------------- /nearswap/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/errors.rs -------------------------------------------------------------------------------- /nearswap/src/ft_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/ft_token.rs -------------------------------------------------------------------------------- /nearswap/src/internal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/internal.rs -------------------------------------------------------------------------------- /nearswap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/lib.rs -------------------------------------------------------------------------------- /nearswap/src/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/pool.rs -------------------------------------------------------------------------------- /nearswap/src/storage_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/storage_management.rs -------------------------------------------------------------------------------- /nearswap/src/twap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/twap.rs -------------------------------------------------------------------------------- /nearswap/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/types.rs -------------------------------------------------------------------------------- /nearswap/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/util.rs -------------------------------------------------------------------------------- /nearswap/src/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/src/view.rs -------------------------------------------------------------------------------- /nearswap/tests/create_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/tests/create_pool.rs -------------------------------------------------------------------------------- /nearswap/tests/fee_simulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/tests/fee_simulation.rs -------------------------------------------------------------------------------- /nearswap/tests/simulation_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/tests/simulation_utils.rs -------------------------------------------------------------------------------- /nearswap/tests/swap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/nearswap/tests/swap.rs -------------------------------------------------------------------------------- /other-contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/other-contracts/.gitignore -------------------------------------------------------------------------------- /other-contracts/sample-token/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/other-contracts/sample-token/Cargo.toml -------------------------------------------------------------------------------- /other-contracts/sample-token/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/other-contracts/sample-token/Makefile -------------------------------------------------------------------------------- /other-contracts/sample-token/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/other-contracts/sample-token/src/lib.rs -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/.env: -------------------------------------------------------------------------------- 1 | ERC20_ADDRESS=0x9d0BdeAB5077029CCA6e94BC7DDB80769eAFb1eC 2 | -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/networks.js -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/package.json -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/a11y.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/a11y.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/balance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/balance.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/dropdown.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/global.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/menu-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/menu-icon.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/css/title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/css/title.css -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/apple-touch-icon.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/favicon-16x16.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/favicon-32x32.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/favicon.ico -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/img/social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/img/social-preview.png -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/index.html -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/js/authEthereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/js/authEthereum.js -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/js/domHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/js/domHelpers.js -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/js/index.js -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/js/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/js/render.js -------------------------------------------------------------------------------- /rainbowbridge/ERC-20WebApp/src/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/ERC-20WebApp/src/site.webmanifest -------------------------------------------------------------------------------- /rainbowbridge/TetherUSD/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/TetherUSD/README.MD -------------------------------------------------------------------------------- /rainbowbridge/TetherUSD/tetherconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/TetherUSD/tetherconfig.json -------------------------------------------------------------------------------- /rainbowbridge/testnet/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/testnet/README.MD -------------------------------------------------------------------------------- /rainbowbridge/testnet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/testnet/config.json -------------------------------------------------------------------------------- /rainbowbridge/testnet/generic-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/testnet/generic-config.json -------------------------------------------------------------------------------- /rainbowbridge/wETH/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/wETH/README.MD -------------------------------------------------------------------------------- /rainbowbridge/wETH/wethconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/rainbowbridge/wETH/wethconfig.json -------------------------------------------------------------------------------- /shared-test/test.near.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/shared-test/test.near.json -------------------------------------------------------------------------------- /target/doc/nearswap/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/all.html -------------------------------------------------------------------------------- /target/doc/nearswap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/index.html -------------------------------------------------------------------------------- /target/doc/nearswap/macro.env_log!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/macro.env_log!.html -------------------------------------------------------------------------------- /target/doc/nearswap/macro.env_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/macro.env_log.html -------------------------------------------------------------------------------- /target/doc/nearswap/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/sidebar-items.js -------------------------------------------------------------------------------- /target/doc/nearswap/struct.NearCLP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/struct.NearCLP.html -------------------------------------------------------------------------------- /target/doc/nearswap/struct.Pool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/struct.Pool.html -------------------------------------------------------------------------------- /target/doc/nearswap/struct.PoolInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/struct.PoolInfo.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_mft_rec/fn.on_mft_receive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_mft_rec/fn.on_mft_receive.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_mft_rec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_mft_rec/index.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_mft_rec/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({"fn":[["on_mft_receive",""]]}); -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_nep21/fn.transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_nep21/fn.transfer.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_nep21/fn.transfer_from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_nep21/fn.transfer_from.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_nep21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_nep21/index.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/ext_nep21/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/ext_nep21/sidebar-items.js -------------------------------------------------------------------------------- /target/doc/nearswap/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/index.html -------------------------------------------------------------------------------- /target/doc/nearswap/types/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/types/sidebar-items.js -------------------------------------------------------------------------------- /target/doc/nearswap/util/constant.MAX_GAS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/constant.MAX_GAS.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/constant.NDENOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/constant.NDENOM.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/constant.NEP21_STORAGE_DEPOSIT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/constant.NEP21_STORAGE_DEPOSIT.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/constant.STORAGE_BYTE_PRICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/constant.STORAGE_BYTE_PRICE.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/constant.TGAS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/constant.TGAS.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/fn.assert_account_is_valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/fn.assert_account_is_valid.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/fn.is_promise_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/fn.is_promise_success.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/fn.yton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/fn.yton.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/index.html -------------------------------------------------------------------------------- /target/doc/nearswap/util/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/sidebar-items.js -------------------------------------------------------------------------------- /target/doc/nearswap/util/struct.u256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-fi/clp-contracts/HEAD/target/doc/nearswap/util/struct.u256.html --------------------------------------------------------------------------------