├── .github └── workflows │ ├── launch-release-after-closed-pr.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.txt ├── SCMerchantClient ├── Config.php ├── Enum │ └── OrderStatus.php ├── Exception │ ├── ApiError.php │ └── GenericError.php ├── Http │ ├── CreateOrderRequest.php │ ├── CreateOrderResponse.php │ ├── OldOrderCallback.php │ └── OrderCallback.php ├── SCMerchantClient.php └── Utils.php ├── SP_LICENSE ├── assets ├── images │ ├── card_phone_top.svg │ └── spectrocoin-logo.svg ├── js │ └── block-checkout.js └── style │ └── settings.css ├── changelog.md ├── composer.json ├── composer.lock ├── includes ├── SpectroCoinAuthHandler.php ├── SpectroCoinBlocksIntegration.php └── SpectroCoinGateway.php ├── phpunit.xml ├── spectrocoin.php └── tests ├── SCMerchantClient ├── ConfigTest.php ├── Enum │ └── OrderStatusTest.php ├── Exception │ └── ExceptionTest.php ├── Http │ ├── CreateOrderRequestTest.php │ ├── CreateOrderResponseTest.php │ └── OrderCallbackTest.php ├── SCMerchantClientTest.php └── UtilsTest.php └── bootstrap.php /.github/workflows/launch-release-after-closed-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/.github/workflows/launch-release-after-closed-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/README.txt -------------------------------------------------------------------------------- /SCMerchantClient/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Config.php -------------------------------------------------------------------------------- /SCMerchantClient/Enum/OrderStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Enum/OrderStatus.php -------------------------------------------------------------------------------- /SCMerchantClient/Exception/ApiError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Exception/ApiError.php -------------------------------------------------------------------------------- /SCMerchantClient/Exception/GenericError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Exception/GenericError.php -------------------------------------------------------------------------------- /SCMerchantClient/Http/CreateOrderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Http/CreateOrderRequest.php -------------------------------------------------------------------------------- /SCMerchantClient/Http/CreateOrderResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Http/CreateOrderResponse.php -------------------------------------------------------------------------------- /SCMerchantClient/Http/OldOrderCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Http/OldOrderCallback.php -------------------------------------------------------------------------------- /SCMerchantClient/Http/OrderCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Http/OrderCallback.php -------------------------------------------------------------------------------- /SCMerchantClient/SCMerchantClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/SCMerchantClient.php -------------------------------------------------------------------------------- /SCMerchantClient/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SCMerchantClient/Utils.php -------------------------------------------------------------------------------- /SP_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/SP_LICENSE -------------------------------------------------------------------------------- /assets/images/card_phone_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/assets/images/card_phone_top.svg -------------------------------------------------------------------------------- /assets/images/spectrocoin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/assets/images/spectrocoin-logo.svg -------------------------------------------------------------------------------- /assets/js/block-checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/assets/js/block-checkout.js -------------------------------------------------------------------------------- /assets/style/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/assets/style/settings.css -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/SpectroCoinAuthHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/includes/SpectroCoinAuthHandler.php -------------------------------------------------------------------------------- /includes/SpectroCoinBlocksIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/includes/SpectroCoinBlocksIntegration.php -------------------------------------------------------------------------------- /includes/SpectroCoinGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/includes/SpectroCoinGateway.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /spectrocoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/spectrocoin.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/ConfigTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/Enum/OrderStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/Enum/OrderStatusTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/Exception/ExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/Exception/ExceptionTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/Http/CreateOrderRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/Http/CreateOrderRequestTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/Http/CreateOrderResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/Http/CreateOrderResponseTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/Http/OrderCallbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/Http/OrderCallbackTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/SCMerchantClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/SCMerchantClientTest.php -------------------------------------------------------------------------------- /tests/SCMerchantClient/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/SCMerchantClient/UtilsTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpectroCoin/WordPress-WooCommerce-Bitcoin-Payment-Gateway-Plugin/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------