├── .github └── workflows │ ├── preview-release.yml │ └── release.yml ├── .gitignore ├── API-request-example.js ├── CODEOWNERS ├── Functions-request-config.js ├── FunctionsSandboxLibrary ├── Functions.js ├── Log.js ├── Sandbox.js ├── Validator.js ├── buildRequest.js ├── encryptSecrets.js ├── getRequestConfig.js ├── handler.js ├── index.js └── simulateRequest.js ├── LICENSE ├── README.md ├── contract-diff.sh ├── contracts ├── AutomatedFunctionsConsumer.sol ├── FunctionsConsumer.sol ├── dev │ ├── AuthorizedReceiver.sol │ ├── functions │ │ ├── AuthorizedOriginReceiverUpgradeable.sol │ │ ├── ConfirmedOwnerUpgradeable.sol │ │ ├── Functions.sol │ │ ├── FunctionsBillingRegistry.sol │ │ ├── FunctionsClient.sol │ │ ├── FunctionsOracle.sol │ │ └── vendor │ │ │ ├── ProxyAdmin.sol │ │ │ └── TransparentUpgradeableProxy.sol │ ├── interfaces │ │ ├── AuthorizedOriginReceiverInterface.sol │ │ ├── AuthorizedReceiverInterface.sol │ │ ├── FunctionsBillingRegistryInterface.sol │ │ ├── FunctionsClientInterface.sol │ │ └── FunctionsOracleInterface.sol │ ├── ocr2 │ │ ├── OCR2Base.sol │ │ └── OCR2BaseUpgradeable.sol │ └── vendor │ │ ├── @ensdomains │ │ └── buffer │ │ │ └── 0.1.0 │ │ │ └── Buffer.sol │ │ ├── openzeppelin-solidity │ │ ├── v.4.8.0 │ │ │ └── contracts │ │ │ │ ├── security │ │ │ │ └── Pausable.sol │ │ │ │ └── utils │ │ │ │ ├── Context.sol │ │ │ │ ├── SafeCast.sol │ │ │ │ └── structs │ │ │ │ └── EnumerableSet.sol │ │ └── v4.3.1 │ │ │ └── contracts │ │ │ └── utils │ │ │ └── Address.sol │ │ └── solidity-cborutils │ │ └── 2.0.0 │ │ └── CBOR.sol └── test │ ├── LinkToken.sol │ └── MockV3Aggregator.sol ├── hardhat.config.js ├── networks.js ├── package.json ├── scripts ├── generateKeypair.js └── simulateFunctionsJavaScript.js ├── source-code.js ├── tasks ├── Functions-billing │ ├── accept.js │ ├── add.js │ ├── cancel.js │ ├── create.js │ ├── fund.js │ ├── index.js │ ├── info.js │ ├── remove.js │ ├── timeoutRequest.js │ └── transfer.js ├── Functions-client │ ├── buildOffchainSecrets.js │ ├── buildRequestJSON.js │ ├── checkUpkeep.js │ ├── clearGists.js │ ├── deployAutoClient.js │ ├── deployClient.js │ ├── index.js │ ├── performManualUpkeep.js │ ├── readResultAndError.js │ ├── request.js │ ├── setAutoRequest.js │ ├── setOracleAddr.js │ └── simulate.js ├── accounts.js ├── balance.js ├── block-number.js ├── index.js └── utils │ ├── artifact.js │ ├── generateOffchainSecrets.js │ ├── github.js │ ├── index.js │ ├── logger.js │ ├── network.js │ ├── price.js │ ├── prompt.js │ └── spin.js └── test └── unit └── FunctionsConsumer.spec.js /.github/workflows/preview-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/.github/workflows/preview-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/.gitignore -------------------------------------------------------------------------------- /API-request-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/API-request-example.js -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @spaceandtimelabs/gateway-ops-team 2 | @henrydaly -------------------------------------------------------------------------------- /Functions-request-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/Functions-request-config.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/Functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/Functions.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/Log.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/Sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/Sandbox.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/Validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/Validator.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/buildRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/buildRequest.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/encryptSecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/encryptSecrets.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/getRequestConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/getRequestConfig.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/handler.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/index.js -------------------------------------------------------------------------------- /FunctionsSandboxLibrary/simulateRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/FunctionsSandboxLibrary/simulateRequest.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/README.md -------------------------------------------------------------------------------- /contract-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contract-diff.sh -------------------------------------------------------------------------------- /contracts/AutomatedFunctionsConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/AutomatedFunctionsConsumer.sol -------------------------------------------------------------------------------- /contracts/FunctionsConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/FunctionsConsumer.sol -------------------------------------------------------------------------------- /contracts/dev/AuthorizedReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/AuthorizedReceiver.sol -------------------------------------------------------------------------------- /contracts/dev/functions/AuthorizedOriginReceiverUpgradeable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/AuthorizedOriginReceiverUpgradeable.sol -------------------------------------------------------------------------------- /contracts/dev/functions/ConfirmedOwnerUpgradeable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/ConfirmedOwnerUpgradeable.sol -------------------------------------------------------------------------------- /contracts/dev/functions/Functions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/Functions.sol -------------------------------------------------------------------------------- /contracts/dev/functions/FunctionsBillingRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/FunctionsBillingRegistry.sol -------------------------------------------------------------------------------- /contracts/dev/functions/FunctionsClient.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/FunctionsClient.sol -------------------------------------------------------------------------------- /contracts/dev/functions/FunctionsOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/FunctionsOracle.sol -------------------------------------------------------------------------------- /contracts/dev/functions/vendor/ProxyAdmin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/vendor/ProxyAdmin.sol -------------------------------------------------------------------------------- /contracts/dev/functions/vendor/TransparentUpgradeableProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/functions/vendor/TransparentUpgradeableProxy.sol -------------------------------------------------------------------------------- /contracts/dev/interfaces/AuthorizedOriginReceiverInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/interfaces/AuthorizedOriginReceiverInterface.sol -------------------------------------------------------------------------------- /contracts/dev/interfaces/AuthorizedReceiverInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/interfaces/AuthorizedReceiverInterface.sol -------------------------------------------------------------------------------- /contracts/dev/interfaces/FunctionsBillingRegistryInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/interfaces/FunctionsBillingRegistryInterface.sol -------------------------------------------------------------------------------- /contracts/dev/interfaces/FunctionsClientInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/interfaces/FunctionsClientInterface.sol -------------------------------------------------------------------------------- /contracts/dev/interfaces/FunctionsOracleInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/interfaces/FunctionsOracleInterface.sol -------------------------------------------------------------------------------- /contracts/dev/ocr2/OCR2Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/ocr2/OCR2Base.sol -------------------------------------------------------------------------------- /contracts/dev/ocr2/OCR2BaseUpgradeable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/ocr2/OCR2BaseUpgradeable.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/@ensdomains/buffer/0.1.0/Buffer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/@ensdomains/buffer/0.1.0/Buffer.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/security/Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/security/Pausable.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/Context.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/SafeCast.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/SafeCast.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/structs/EnumerableSet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/openzeppelin-solidity/v.4.8.0/contracts/utils/structs/EnumerableSet.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/openzeppelin-solidity/v4.3.1/contracts/utils/Address.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/openzeppelin-solidity/v4.3.1/contracts/utils/Address.sol -------------------------------------------------------------------------------- /contracts/dev/vendor/solidity-cborutils/2.0.0/CBOR.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/dev/vendor/solidity-cborutils/2.0.0/CBOR.sol -------------------------------------------------------------------------------- /contracts/test/LinkToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/test/LinkToken.sol -------------------------------------------------------------------------------- /contracts/test/MockV3Aggregator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/contracts/test/MockV3Aggregator.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/networks.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generateKeypair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/scripts/generateKeypair.js -------------------------------------------------------------------------------- /scripts/simulateFunctionsJavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/scripts/simulateFunctionsJavaScript.js -------------------------------------------------------------------------------- /source-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/source-code.js -------------------------------------------------------------------------------- /tasks/Functions-billing/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/accept.js -------------------------------------------------------------------------------- /tasks/Functions-billing/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/add.js -------------------------------------------------------------------------------- /tasks/Functions-billing/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/cancel.js -------------------------------------------------------------------------------- /tasks/Functions-billing/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/create.js -------------------------------------------------------------------------------- /tasks/Functions-billing/fund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/fund.js -------------------------------------------------------------------------------- /tasks/Functions-billing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/index.js -------------------------------------------------------------------------------- /tasks/Functions-billing/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/info.js -------------------------------------------------------------------------------- /tasks/Functions-billing/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/remove.js -------------------------------------------------------------------------------- /tasks/Functions-billing/timeoutRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/timeoutRequest.js -------------------------------------------------------------------------------- /tasks/Functions-billing/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-billing/transfer.js -------------------------------------------------------------------------------- /tasks/Functions-client/buildOffchainSecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/buildOffchainSecrets.js -------------------------------------------------------------------------------- /tasks/Functions-client/buildRequestJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/buildRequestJSON.js -------------------------------------------------------------------------------- /tasks/Functions-client/checkUpkeep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/checkUpkeep.js -------------------------------------------------------------------------------- /tasks/Functions-client/clearGists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/clearGists.js -------------------------------------------------------------------------------- /tasks/Functions-client/deployAutoClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/deployAutoClient.js -------------------------------------------------------------------------------- /tasks/Functions-client/deployClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/deployClient.js -------------------------------------------------------------------------------- /tasks/Functions-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/index.js -------------------------------------------------------------------------------- /tasks/Functions-client/performManualUpkeep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/performManualUpkeep.js -------------------------------------------------------------------------------- /tasks/Functions-client/readResultAndError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/readResultAndError.js -------------------------------------------------------------------------------- /tasks/Functions-client/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/request.js -------------------------------------------------------------------------------- /tasks/Functions-client/setAutoRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/setAutoRequest.js -------------------------------------------------------------------------------- /tasks/Functions-client/setOracleAddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/setOracleAddr.js -------------------------------------------------------------------------------- /tasks/Functions-client/simulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/Functions-client/simulate.js -------------------------------------------------------------------------------- /tasks/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/accounts.js -------------------------------------------------------------------------------- /tasks/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/balance.js -------------------------------------------------------------------------------- /tasks/block-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/block-number.js -------------------------------------------------------------------------------- /tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/index.js -------------------------------------------------------------------------------- /tasks/utils/artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/artifact.js -------------------------------------------------------------------------------- /tasks/utils/generateOffchainSecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/generateOffchainSecrets.js -------------------------------------------------------------------------------- /tasks/utils/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/github.js -------------------------------------------------------------------------------- /tasks/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/index.js -------------------------------------------------------------------------------- /tasks/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/logger.js -------------------------------------------------------------------------------- /tasks/utils/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/network.js -------------------------------------------------------------------------------- /tasks/utils/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/price.js -------------------------------------------------------------------------------- /tasks/utils/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/prompt.js -------------------------------------------------------------------------------- /tasks/utils/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/tasks/utils/spin.js -------------------------------------------------------------------------------- /test/unit/FunctionsConsumer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/sxt-clf-template/HEAD/test/unit/FunctionsConsumer.spec.js --------------------------------------------------------------------------------