├── .envrc.local.example ├── .github └── workflows │ ├── ci-compiled-scripts.yaml │ ├── ci-linux.yaml │ ├── ci-nix.yaml │ ├── ci-oci.yaml │ └── ci-ui.yaml ├── .gitignore ├── .pre-commit-config.yaml.nonix ├── .stylish-haskell.yaml ├── README.md ├── cabal.project ├── deploy-registry.sh ├── doc ├── architecture.md ├── image-1.png └── image.png ├── fix-cabal-fmt.sh ├── fix-fourmolu.sh ├── flake.lock ├── flake.nix ├── frontend ├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── middleware.ts ├── next.config.js ├── package-lock.json ├── package.json ├── public │ └── assets │ │ └── WST_logo.png ├── src │ └── app │ │ ├── [username] │ │ ├── index.tsx │ │ └── page.tsx │ │ ├── clientLayout.tsx │ │ ├── components │ │ ├── AlertBar.tsx │ │ ├── Card.tsx │ │ ├── ContentTabs.tsx │ │ ├── CopyTextField.tsx │ │ ├── NavDrawer.tsx │ │ ├── ProfileSwitcher.tsx │ │ ├── WSTAppBar.tsx │ │ ├── WSTCommonButton.tsx │ │ ├── WSTIconButton.tsx │ │ ├── WSTTable.tsx │ │ └── WSTTextField.tsx │ │ ├── context │ │ └── demoEnvironmentContext.ts │ │ ├── favicon.ico │ │ ├── layout.tsx │ │ ├── lib │ │ ├── demoEnvironment.server.ts │ │ └── initialData.ts │ │ ├── mint-authority │ │ └── page.tsx │ │ ├── page.module.css │ │ ├── store │ │ ├── schema.json │ │ ├── store.tsx │ │ └── types.ts │ │ ├── styles │ │ ├── globals.css │ │ ├── mui_style.d.ts │ │ ├── palette.ts │ │ ├── theme.tsx │ │ └── themeContext.tsx │ │ └── utils │ │ └── walletUtils.ts └── tsconfig.json ├── generated ├── html │ └── index.html ├── openapi │ └── schema.json ├── prettyScriptOutput.txt ├── scripts │ ├── mainnet │ │ ├── blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json │ │ ├── blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json │ │ ├── directoryNodeMinting-58d4bf540e117be4556767e88a29dbdd472bfab61b44b4147d0c86d0.json │ │ ├── directoryNodeMinting-8563c0caef59ea882cadda579474801da7646345ae3613d74dcfadaa.json │ │ ├── directoryNodeMinting-cdb1de94e98d5380573bc412864dff79afc60f0962c2affceb2f9b45.json │ │ ├── directoryNodeSpending-e8308693f34290dd29ed2c0a2d563de58eacc579c63b7c5e837f55ba.json │ │ ├── postfixIssuerCborHex.txt │ │ ├── prefixIssuerCborHex.txt │ │ ├── programmableLogicBaseSpending-6a88e5f4051227ab54d6c637fd7d5d628d5452124e933da866559ef6.json │ │ ├── programmableLogicBaseSpending-905055fc4ede3e342636c516e0428fd7276b86a02ed9319517b6242a.json │ │ ├── programmableLogicBaseSpending-922a3913b26bfd4d1eeb3c20c9d35fbe25852212d2b32b8ed292478e.json │ │ ├── programmableLogicBaseSpending-eac83c30f3606b1ac668522b82495c8349cc4d138038e5b535dd82a5.json │ │ ├── programmableLogicGlobalStake-02e8cd69e393486840770b2ec08b6f3a62a6f82f70f2fb60ccfd59e9.json │ │ ├── programmableLogicGlobalStake-4f12498c5f02c8fb8eb76674128131c55078992c197bd48835777985.json │ │ ├── programmableLogicGlobalStake-57db1c045079b11486a9adb8e563c61b781667b4d693dfaa0b08f1cd.json │ │ ├── programmableLogicGlobalStake-8605c777b28018f62f04cb5c5ce71d5209909dcdfcc96647e24f625c.json │ │ ├── programmableTokenMinting-78a2dea856f3b52f87252542a144378845f83621f088f11f0f0b0ed4.json │ │ ├── programmableTokenMinting-97b9ef6e14fcc22bbecfa32b75013f9e1343e01ddeb1b1c2d073a4f3.json │ │ ├── programmableTokenMinting-b0d8be8772baa2911da3e28550c3d11b28dd27d41d8869c66ba9dc53.json │ │ ├── programmableTokenMinting-cf77ce6b16061582371d9abc02c4f16c192697bb553bb655692324c4.json │ │ ├── protocolParametersNFTMinting-b5f6e4c2c95c99112ecd8841b9f2bd8481d54ec600112f47a3866a19.json │ │ ├── protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json │ │ ├── transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json │ │ ├── transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json │ │ ├── transferLogicSpending-3abb92254a506e5021e867ecfbaba79b2fbc84b39ec7b09e3417c8eb.json │ │ ├── transferLogicSpending-570841fa419ed6f44cc353e0683b123d1314a3d41d10d7c27f39c1a1.json │ │ ├── transferLogicSpending-92340557c05484e6a363caec8df0c601e4e6159537b4cc900568ba5b.json │ │ └── transferLogicSpending-a67b4b754a79af7b2a447d4c67122e8f91cc7b8d6cdad1c462033f7d.json │ ├── preview │ │ ├── blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json │ │ ├── blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json │ │ ├── directoryNodeMinting-16735aee9e7501049468e5312b7eb619fcb4383e2790f39d6010ce3d.json │ │ ├── directoryNodeMinting-230dc84b67709f6ff0e504f0d861f8a3db3b55ac51eca8c809f31149.json │ │ ├── directoryNodeMinting-cb41bdf7daac94a090fdd38c43c8f52fa242f6d7cf5700c9a3a78d52.json │ │ ├── directoryNodeSpending-9c7882571865fc97599f2cfb784ddc495d48dccfd9fb52ee62ad030b.json │ │ ├── postfixIssuerCborHex.txt │ │ ├── prefixIssuerCborHex.txt │ │ ├── programmableLogicBaseSpending-01e47326abc1dfbd6a6d7050f9619ca2f0f86389753b0a7658755545.json │ │ ├── programmableLogicBaseSpending-48339fc44241617a0232f8b6fcebd00c070f3edb24c3a98431bb5035.json │ │ ├── programmableLogicBaseSpending-b530879c6147f74f17dc71eba851b8f523a654fd2981a367df17be6d.json │ │ ├── programmableLogicBaseSpending-bbc4afc85c16f76eadb475ad44fc864870bb016006eac4afeb89738b.json │ │ ├── programmableLogicGlobalStake-55135fdac9ee5f5952848b4505efbc1da3f882409a99cdaa97b7fa09.json │ │ ├── programmableLogicGlobalStake-65bbb1f3a77200a2b74daacf4d0375b4f4b50f65df4e4bb296beca8b.json │ │ ├── programmableLogicGlobalStake-88543144c7d76952f93db3990a9f5e90ed5a824e9009dc0438e42c48.json │ │ ├── programmableLogicGlobalStake-a0bd609f3381a13ae1c3ada2fd1907245f8ad9305e4c467d78eabd96.json │ │ ├── programmableTokenMinting-29b5233b42bba0ca4cbbec2bdedfb0419451d4980afa0e12a70af88c.json │ │ ├── programmableTokenMinting-7b8ec449469d87aa53c8f95d379cbccc99b18e883aef1535f3bcff44.json │ │ ├── programmableTokenMinting-88d9bd4bda4ea37cc5464c6a1fe2cea7b0867ce517dcb842ad12bc04.json │ │ ├── programmableTokenMinting-bf1a6ac3431075a7f00d7fa929d9b4b733d693ab20531413776f7d86.json │ │ ├── protocolParametersNFTMinting-d81446751b45947e4b99fe0c8df71c8b0962faf129e09d923618cb40.json │ │ ├── protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json │ │ ├── transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json │ │ ├── transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json │ │ ├── transferLogicSpending-4eafef4a1712e464f0efdf287e636932d7fd6a7a43dbb101536218b5.json │ │ ├── transferLogicSpending-94fb5e8fc60e26ad7441646163281b8ad4492d34b7212093571bd4e9.json │ │ ├── transferLogicSpending-a17dffc7908f60adebf55f55615da0bd7008fdc4d36fafc70644d752.json │ │ └── transferLogicSpending-e78efcc8e10c322aa44f9151fea132011c2b13c754051f9cfb288ea6.json │ └── unapplied │ │ ├── binds │ │ ├── alwaysFail.json │ │ ├── blacklistSpending.json │ │ ├── directoryNodeMintingPolicy.json │ │ ├── directorySpending.json │ │ ├── freezeAndSeizeTransfer.json │ │ ├── permissionedMinting.json │ │ ├── permissionedTransfer.json │ │ ├── programmableLogicBase.json │ │ ├── programmableLogicGlobal.json │ │ ├── programmableTokenMinting.json │ │ └── protocolParametersNFTMinting.json │ │ ├── prod │ │ ├── alwaysFail.json │ │ ├── blacklistSpending.json │ │ ├── directoryNodeMintingPolicy.json │ │ ├── directorySpending.json │ │ ├── freezeAndSeizeTransfer.json │ │ ├── permissionedMinting.json │ │ ├── permissionedTransfer.json │ │ ├── programmableLogicBase.json │ │ ├── programmableLogicGlobal.json │ │ ├── programmableTokenMinting.json │ │ └── protocolParametersNFTMinting.json │ │ └── tracing │ │ ├── alwaysFail.json │ │ ├── blacklistSpending.json │ │ ├── directoryNodeMintingPolicy.json │ │ ├── directorySpending.json │ │ ├── freezeAndSeizeTransfer.json │ │ ├── permissionedMinting.json │ │ ├── permissionedTransfer.json │ │ ├── programmableLogicBase.json │ │ ├── programmableLogicGlobal.json │ │ ├── programmableTokenMinting.json │ │ └── protocolParametersNFTMinting.json └── unapplied │ ├── binds │ ├── alwaysFail.json │ ├── blacklistSpending.json │ ├── directoryNodeMintingPolicy.json │ ├── directorySpending.json │ ├── freezeAndSeizeTransfer.json │ ├── permissionedMinting.json │ ├── permissionedTransfer.json │ ├── programmableLogicBase.json │ ├── programmableLogicGlobal.json │ ├── programmableTokenMinting.json │ └── protocolParametersNFTMinting.json │ ├── prod │ ├── alwaysFail.json │ ├── blacklistSpending.json │ ├── directoryNodeMintingPolicy.json │ ├── directorySpending.json │ ├── freezeAndSeizeTransfer.json │ ├── permissionedMinting.json │ ├── permissionedTransfer.json │ ├── programmableLogicBase.json │ ├── programmableLogicGlobal.json │ ├── programmableTokenMinting.json │ └── protocolParametersNFTMinting.json │ ├── test │ ├── issuance1.json │ ├── issuance2.json │ ├── postfixIssuerCborHex.txt │ └── prefixIssuerCborHex.txt │ └── tracing │ ├── alwaysFail.json │ ├── blacklistSpending.json │ ├── directoryNodeMintingPolicy.json │ ├── directorySpending.json │ ├── freezeAndSeizeTransfer.json │ ├── permissionedMinting.json │ ├── permissionedTransfer.json │ ├── programmableLogicBase.json │ ├── programmableLogicGlobal.json │ ├── programmableTokenMinting.json │ └── protocolParametersNFTMinting.json ├── hei.yaml ├── image-1.png ├── issue-tokens.sh ├── nix ├── containers.nix ├── outputs.nix ├── pkgs.nix ├── project.nix ├── shell.nix └── utils.nix ├── preprod-network ├── .envrc.local ├── .envrc.local.example ├── blockfrost ├── policy-issuers.sqlite ├── preprod-env.json └── preprod_script_root.json ├── preview-network ├── blockfrost ├── operator.sk ├── preview_script_root.json ├── tx.dot └── tx.json ├── query.sh ├── register-stake-scripts.sh ├── src ├── examples │ ├── aiken │ │ ├── aiken │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── continuous-integration.yml │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── aiken.lock │ │ │ ├── aiken.toml │ │ │ ├── plutus.json │ │ │ └── validators │ │ │ │ └── transfer.ak │ │ ├── haskell │ │ │ ├── LICENSE │ │ │ ├── aiken-example.cabal │ │ │ ├── data │ │ │ │ └── aiken-scripts.json │ │ │ ├── exe │ │ │ │ └── cip-143-cli │ │ │ │ │ └── Main.hs │ │ │ ├── lib │ │ │ │ └── Wst │ │ │ │ │ ├── Aiken │ │ │ │ │ ├── Error.hs │ │ │ │ │ └── Offchain.hs │ │ │ │ │ ├── Cli.hs │ │ │ │ │ └── Cli │ │ │ │ │ ├── App.hs │ │ │ │ │ └── Command.hs │ │ │ └── test │ │ │ │ ├── Spec.hs │ │ │ │ └── Wst │ │ │ │ └── Aiken │ │ │ │ └── Test.hs │ │ └── update-aiken-blueprint.sh │ └── regulated-stablecoin │ │ ├── LICENSE │ │ ├── exe │ │ ├── calculate-hashes │ │ │ └── Main.hs │ │ ├── convert-key │ │ │ └── Main.hs │ │ ├── export-smart-tokens │ │ │ └── Main.hs │ │ ├── regulated-stablecoin-cli │ │ │ └── Main.hs │ │ └── write-openapi-schema │ │ │ └── Main.hs │ │ ├── lib │ │ └── Wst │ │ │ ├── App.hs │ │ │ ├── AppError.hs │ │ │ ├── Cli.hs │ │ │ ├── Cli │ │ │ └── Command.hs │ │ │ ├── Client.hs │ │ │ ├── Offchain │ │ │ ├── BuildTx │ │ │ │ ├── ExampleTransfer.hs │ │ │ │ ├── Failing.hs │ │ │ │ ├── LinkedList.hs │ │ │ │ ├── ProgrammableLogic.hs │ │ │ │ ├── TransferLogic.hs │ │ │ │ └── Utils.hs │ │ │ ├── Endpoints │ │ │ │ └── Deployment.hs │ │ │ ├── Env.hs │ │ │ ├── Query.hs │ │ │ └── Scripts.hs │ │ │ ├── Server.hs │ │ │ └── Server │ │ │ ├── DemoEnvironment.hs │ │ │ ├── PolicyIssuerStore.hs │ │ │ └── Types.hs │ │ ├── regulated-stablecoin.cabal │ │ └── test │ │ └── unit │ │ ├── Spec.hs │ │ └── Wst │ │ └── Test │ │ ├── Env.hs │ │ └── UnitTest.hs ├── programmable-tokens-offchain │ ├── LICENSE │ ├── lib │ │ └── ProgrammableTokens │ │ │ ├── JSON │ │ │ └── Utils.hs │ │ │ └── OffChain │ │ │ ├── BuildTx.hs │ │ │ ├── BuildTx │ │ │ ├── Directory.hs │ │ │ ├── IssuanceCborHexRef.hs │ │ │ ├── ProgrammableLogic.hs │ │ │ ├── ProtocolParams.hs │ │ │ └── Utils.hs │ │ │ ├── Endpoints.hs │ │ │ ├── Env.hs │ │ │ ├── Env │ │ │ ├── Directory.hs │ │ │ ├── Operator.hs │ │ │ ├── Runtime.hs │ │ │ ├── TransferLogic.hs │ │ │ └── Utils.hs │ │ │ ├── Error.hs │ │ │ ├── Orphans.hs │ │ │ ├── Query.hs │ │ │ ├── Scripts.hs │ │ │ └── UTxODat.hs │ └── programmable-tokens-offchain.cabal ├── programmable-tokens-onchain │ ├── LICENSE │ ├── lib │ │ ├── Profile.hs │ │ ├── SmartTokens │ │ │ ├── CodeLens.hs │ │ │ ├── Contracts │ │ │ │ ├── AlwaysYields.hs │ │ │ │ ├── ExampleTransferLogic.hs │ │ │ │ ├── Issuance.hs │ │ │ │ ├── IssuanceCborHex.hs │ │ │ │ ├── ProgrammableLogicBase.hs │ │ │ │ └── ProtocolParams.hs │ │ │ ├── Core │ │ │ │ └── Scripts.hs │ │ │ ├── LinkedList │ │ │ │ ├── BlacklistCommon.hs │ │ │ │ ├── Common.hs │ │ │ │ ├── MintBlacklist.hs │ │ │ │ ├── MintDirectory.hs │ │ │ │ ├── SpendBlacklist.hs │ │ │ │ └── SpendDirectory.hs │ │ │ └── Types │ │ │ │ ├── Constants.hs │ │ │ │ ├── PTokenDirectory.hs │ │ │ │ └── ProtocolParams.hs │ │ └── Types │ │ │ └── Constants.hs │ └── programmable-tokens-onchain.cabal └── programmable-tokens-test │ ├── LICENSE │ ├── lib │ └── ProgrammableTokens │ │ ├── Gen.hs │ │ └── Test.hs │ ├── programmable-tokens-testlib.cabal │ └── test │ ├── ProgrammableTokens │ └── Test │ │ ├── DirectorySet.hs │ │ └── Error.hs │ └── Spec.hs ├── transfer.sh └── tx-vis.sh /.envrc.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.envrc.local.example -------------------------------------------------------------------------------- /.github/workflows/ci-compiled-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.github/workflows/ci-compiled-scripts.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.github/workflows/ci-linux.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.github/workflows/ci-nix.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-oci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.github/workflows/ci-oci.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.github/workflows/ci-ui.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml.nonix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.pre-commit-config.yaml.nonix -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/cabal.project -------------------------------------------------------------------------------- /deploy-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/deploy-registry.sh -------------------------------------------------------------------------------- /doc/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/doc/architecture.md -------------------------------------------------------------------------------- /doc/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/doc/image-1.png -------------------------------------------------------------------------------- /doc/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/doc/image.png -------------------------------------------------------------------------------- /fix-cabal-fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/fix-cabal-fmt.sh -------------------------------------------------------------------------------- /fix-fourmolu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/fix-fourmolu.sh -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/flake.nix -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/middleware.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/assets/WST_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/public/assets/WST_logo.png -------------------------------------------------------------------------------- /frontend/src/app/[username]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/[username]/index.tsx -------------------------------------------------------------------------------- /frontend/src/app/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/[username]/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/clientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/clientLayout.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/AlertBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/AlertBar.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/Card.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/ContentTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/ContentTabs.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/CopyTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/CopyTextField.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/NavDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/NavDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/ProfileSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/ProfileSwitcher.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/WSTAppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/WSTAppBar.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/WSTCommonButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/WSTCommonButton.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/WSTIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/WSTIconButton.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/WSTTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/WSTTable.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/WSTTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/components/WSTTextField.tsx -------------------------------------------------------------------------------- /frontend/src/app/context/demoEnvironmentContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/context/demoEnvironmentContext.ts -------------------------------------------------------------------------------- /frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/lib/demoEnvironment.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/lib/demoEnvironment.server.ts -------------------------------------------------------------------------------- /frontend/src/app/lib/initialData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/lib/initialData.ts -------------------------------------------------------------------------------- /frontend/src/app/mint-authority/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/mint-authority/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/page.module.css -------------------------------------------------------------------------------- /frontend/src/app/store/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/store/schema.json -------------------------------------------------------------------------------- /frontend/src/app/store/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/store/store.tsx -------------------------------------------------------------------------------- /frontend/src/app/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/store/types.ts -------------------------------------------------------------------------------- /frontend/src/app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/styles/globals.css -------------------------------------------------------------------------------- /frontend/src/app/styles/mui_style.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/styles/mui_style.d.ts -------------------------------------------------------------------------------- /frontend/src/app/styles/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/styles/palette.ts -------------------------------------------------------------------------------- /frontend/src/app/styles/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/styles/theme.tsx -------------------------------------------------------------------------------- /frontend/src/app/styles/themeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/styles/themeContext.tsx -------------------------------------------------------------------------------- /frontend/src/app/utils/walletUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/src/app/utils/walletUtils.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /generated/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/html/index.html -------------------------------------------------------------------------------- /generated/openapi/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/openapi/schema.json -------------------------------------------------------------------------------- /generated/prettyScriptOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/prettyScriptOutput.txt -------------------------------------------------------------------------------- /generated/scripts/mainnet/blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/directoryNodeMinting-58d4bf540e117be4556767e88a29dbdd472bfab61b44b4147d0c86d0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/directoryNodeMinting-58d4bf540e117be4556767e88a29dbdd472bfab61b44b4147d0c86d0.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/directoryNodeMinting-8563c0caef59ea882cadda579474801da7646345ae3613d74dcfadaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/directoryNodeMinting-8563c0caef59ea882cadda579474801da7646345ae3613d74dcfadaa.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/directoryNodeMinting-cdb1de94e98d5380573bc412864dff79afc60f0962c2affceb2f9b45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/directoryNodeMinting-cdb1de94e98d5380573bc412864dff79afc60f0962c2affceb2f9b45.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/directoryNodeSpending-e8308693f34290dd29ed2c0a2d563de58eacc579c63b7c5e837f55ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/directoryNodeSpending-e8308693f34290dd29ed2c0a2d563de58eacc579c63b7c5e837f55ba.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/postfixIssuerCborHex.txt: -------------------------------------------------------------------------------- 1 | 0001 -------------------------------------------------------------------------------- /generated/scripts/mainnet/prefixIssuerCborHex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/prefixIssuerCborHex.txt -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicBaseSpending-6a88e5f4051227ab54d6c637fd7d5d628d5452124e933da866559ef6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicBaseSpending-6a88e5f4051227ab54d6c637fd7d5d628d5452124e933da866559ef6.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicBaseSpending-905055fc4ede3e342636c516e0428fd7276b86a02ed9319517b6242a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicBaseSpending-905055fc4ede3e342636c516e0428fd7276b86a02ed9319517b6242a.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicBaseSpending-922a3913b26bfd4d1eeb3c20c9d35fbe25852212d2b32b8ed292478e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicBaseSpending-922a3913b26bfd4d1eeb3c20c9d35fbe25852212d2b32b8ed292478e.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicBaseSpending-eac83c30f3606b1ac668522b82495c8349cc4d138038e5b535dd82a5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicBaseSpending-eac83c30f3606b1ac668522b82495c8349cc4d138038e5b535dd82a5.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicGlobalStake-02e8cd69e393486840770b2ec08b6f3a62a6f82f70f2fb60ccfd59e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicGlobalStake-02e8cd69e393486840770b2ec08b6f3a62a6f82f70f2fb60ccfd59e9.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicGlobalStake-4f12498c5f02c8fb8eb76674128131c55078992c197bd48835777985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicGlobalStake-4f12498c5f02c8fb8eb76674128131c55078992c197bd48835777985.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicGlobalStake-57db1c045079b11486a9adb8e563c61b781667b4d693dfaa0b08f1cd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicGlobalStake-57db1c045079b11486a9adb8e563c61b781667b4d693dfaa0b08f1cd.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableLogicGlobalStake-8605c777b28018f62f04cb5c5ce71d5209909dcdfcc96647e24f625c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableLogicGlobalStake-8605c777b28018f62f04cb5c5ce71d5209909dcdfcc96647e24f625c.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableTokenMinting-78a2dea856f3b52f87252542a144378845f83621f088f11f0f0b0ed4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableTokenMinting-78a2dea856f3b52f87252542a144378845f83621f088f11f0f0b0ed4.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableTokenMinting-97b9ef6e14fcc22bbecfa32b75013f9e1343e01ddeb1b1c2d073a4f3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableTokenMinting-97b9ef6e14fcc22bbecfa32b75013f9e1343e01ddeb1b1c2d073a4f3.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableTokenMinting-b0d8be8772baa2911da3e28550c3d11b28dd27d41d8869c66ba9dc53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableTokenMinting-b0d8be8772baa2911da3e28550c3d11b28dd27d41d8869c66ba9dc53.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/programmableTokenMinting-cf77ce6b16061582371d9abc02c4f16c192697bb553bb655692324c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/programmableTokenMinting-cf77ce6b16061582371d9abc02c4f16c192697bb553bb655692324c4.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/protocolParametersNFTMinting-b5f6e4c2c95c99112ecd8841b9f2bd8481d54ec600112f47a3866a19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/protocolParametersNFTMinting-b5f6e4c2c95c99112ecd8841b9f2bd8481d54ec600112f47a3866a19.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicSpending-3abb92254a506e5021e867ecfbaba79b2fbc84b39ec7b09e3417c8eb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicSpending-3abb92254a506e5021e867ecfbaba79b2fbc84b39ec7b09e3417c8eb.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicSpending-570841fa419ed6f44cc353e0683b123d1314a3d41d10d7c27f39c1a1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicSpending-570841fa419ed6f44cc353e0683b123d1314a3d41d10d7c27f39c1a1.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicSpending-92340557c05484e6a363caec8df0c601e4e6159537b4cc900568ba5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicSpending-92340557c05484e6a363caec8df0c601e4e6159537b4cc900568ba5b.json -------------------------------------------------------------------------------- /generated/scripts/mainnet/transferLogicSpending-a67b4b754a79af7b2a447d4c67122e8f91cc7b8d6cdad1c462033f7d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/mainnet/transferLogicSpending-a67b4b754a79af7b2a447d4c67122e8f91cc7b8d6cdad1c462033f7d.json -------------------------------------------------------------------------------- /generated/scripts/preview/blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/blacklistMinting-e24d28a1a5019b59bd930128d2c78af6715bbccf18bfb1ca09ef58a7.json -------------------------------------------------------------------------------- /generated/scripts/preview/blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/blacklistSpending-daaf2b1f1aa015f31f467831849209fef92b4eb3a679bc61d7cddd48.json -------------------------------------------------------------------------------- /generated/scripts/preview/directoryNodeMinting-16735aee9e7501049468e5312b7eb619fcb4383e2790f39d6010ce3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/directoryNodeMinting-16735aee9e7501049468e5312b7eb619fcb4383e2790f39d6010ce3d.json -------------------------------------------------------------------------------- /generated/scripts/preview/directoryNodeMinting-230dc84b67709f6ff0e504f0d861f8a3db3b55ac51eca8c809f31149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/directoryNodeMinting-230dc84b67709f6ff0e504f0d861f8a3db3b55ac51eca8c809f31149.json -------------------------------------------------------------------------------- /generated/scripts/preview/directoryNodeMinting-cb41bdf7daac94a090fdd38c43c8f52fa242f6d7cf5700c9a3a78d52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/directoryNodeMinting-cb41bdf7daac94a090fdd38c43c8f52fa242f6d7cf5700c9a3a78d52.json -------------------------------------------------------------------------------- /generated/scripts/preview/directoryNodeSpending-9c7882571865fc97599f2cfb784ddc495d48dccfd9fb52ee62ad030b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/directoryNodeSpending-9c7882571865fc97599f2cfb784ddc495d48dccfd9fb52ee62ad030b.json -------------------------------------------------------------------------------- /generated/scripts/preview/postfixIssuerCborHex.txt: -------------------------------------------------------------------------------- 1 | 0001 -------------------------------------------------------------------------------- /generated/scripts/preview/prefixIssuerCborHex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/prefixIssuerCborHex.txt -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicBaseSpending-01e47326abc1dfbd6a6d7050f9619ca2f0f86389753b0a7658755545.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicBaseSpending-01e47326abc1dfbd6a6d7050f9619ca2f0f86389753b0a7658755545.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicBaseSpending-48339fc44241617a0232f8b6fcebd00c070f3edb24c3a98431bb5035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicBaseSpending-48339fc44241617a0232f8b6fcebd00c070f3edb24c3a98431bb5035.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicBaseSpending-b530879c6147f74f17dc71eba851b8f523a654fd2981a367df17be6d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicBaseSpending-b530879c6147f74f17dc71eba851b8f523a654fd2981a367df17be6d.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicBaseSpending-bbc4afc85c16f76eadb475ad44fc864870bb016006eac4afeb89738b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicBaseSpending-bbc4afc85c16f76eadb475ad44fc864870bb016006eac4afeb89738b.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicGlobalStake-55135fdac9ee5f5952848b4505efbc1da3f882409a99cdaa97b7fa09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicGlobalStake-55135fdac9ee5f5952848b4505efbc1da3f882409a99cdaa97b7fa09.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicGlobalStake-65bbb1f3a77200a2b74daacf4d0375b4f4b50f65df4e4bb296beca8b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicGlobalStake-65bbb1f3a77200a2b74daacf4d0375b4f4b50f65df4e4bb296beca8b.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicGlobalStake-88543144c7d76952f93db3990a9f5e90ed5a824e9009dc0438e42c48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicGlobalStake-88543144c7d76952f93db3990a9f5e90ed5a824e9009dc0438e42c48.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableLogicGlobalStake-a0bd609f3381a13ae1c3ada2fd1907245f8ad9305e4c467d78eabd96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableLogicGlobalStake-a0bd609f3381a13ae1c3ada2fd1907245f8ad9305e4c467d78eabd96.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableTokenMinting-29b5233b42bba0ca4cbbec2bdedfb0419451d4980afa0e12a70af88c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableTokenMinting-29b5233b42bba0ca4cbbec2bdedfb0419451d4980afa0e12a70af88c.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableTokenMinting-7b8ec449469d87aa53c8f95d379cbccc99b18e883aef1535f3bcff44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableTokenMinting-7b8ec449469d87aa53c8f95d379cbccc99b18e883aef1535f3bcff44.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableTokenMinting-88d9bd4bda4ea37cc5464c6a1fe2cea7b0867ce517dcb842ad12bc04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableTokenMinting-88d9bd4bda4ea37cc5464c6a1fe2cea7b0867ce517dcb842ad12bc04.json -------------------------------------------------------------------------------- /generated/scripts/preview/programmableTokenMinting-bf1a6ac3431075a7f00d7fa929d9b4b733d693ab20531413776f7d86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/programmableTokenMinting-bf1a6ac3431075a7f00d7fa929d9b4b733d693ab20531413776f7d86.json -------------------------------------------------------------------------------- /generated/scripts/preview/protocolParametersNFTMinting-d81446751b45947e4b99fe0c8df71c8b0962faf129e09d923618cb40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/protocolParametersNFTMinting-d81446751b45947e4b99fe0c8df71c8b0962faf129e09d923618cb40.json -------------------------------------------------------------------------------- /generated/scripts/preview/protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/protocolParametersSpending-7c39d55966a2a02fbce339a73602608a3cea4d79ffb95b4b43f1b9b3.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicIssuerSpending-eaa045a62792588dd7a5134310fd31983082740d8ca70241a2a5498c.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicMinting-b8e98f65c3f29808463ab331827b572beb7d9c866ef0950536255086.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicSpending-4eafef4a1712e464f0efdf287e636932d7fd6a7a43dbb101536218b5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicSpending-4eafef4a1712e464f0efdf287e636932d7fd6a7a43dbb101536218b5.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicSpending-94fb5e8fc60e26ad7441646163281b8ad4492d34b7212093571bd4e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicSpending-94fb5e8fc60e26ad7441646163281b8ad4492d34b7212093571bd4e9.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicSpending-a17dffc7908f60adebf55f55615da0bd7008fdc4d36fafc70644d752.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicSpending-a17dffc7908f60adebf55f55615da0bd7008fdc4d36fafc70644d752.json -------------------------------------------------------------------------------- /generated/scripts/preview/transferLogicSpending-e78efcc8e10c322aa44f9151fea132011c2b13c754051f9cfb288ea6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/preview/transferLogicSpending-e78efcc8e10c322aa44f9151fea132011c2b13c754051f9cfb288ea6.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/alwaysFail.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/blacklistSpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/directorySpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/permissionedMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/binds/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/binds/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/alwaysFail.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/blacklistSpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/directorySpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/permissionedMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/prod/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/prod/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/alwaysFail.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/blacklistSpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/directorySpending.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/permissionedMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/scripts/unapplied/tracing/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/scripts/unapplied/tracing/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /generated/unapplied/binds/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/alwaysFail.json -------------------------------------------------------------------------------- /generated/unapplied/binds/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/blacklistSpending.json -------------------------------------------------------------------------------- /generated/unapplied/binds/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/unapplied/binds/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/directorySpending.json -------------------------------------------------------------------------------- /generated/unapplied/binds/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/binds/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/permissionedMinting.json -------------------------------------------------------------------------------- /generated/unapplied/binds/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/binds/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/unapplied/binds/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/unapplied/binds/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/unapplied/binds/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/binds/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /generated/unapplied/prod/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/alwaysFail.json -------------------------------------------------------------------------------- /generated/unapplied/prod/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/blacklistSpending.json -------------------------------------------------------------------------------- /generated/unapplied/prod/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/unapplied/prod/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/directorySpending.json -------------------------------------------------------------------------------- /generated/unapplied/prod/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/prod/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/permissionedMinting.json -------------------------------------------------------------------------------- /generated/unapplied/prod/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/prod/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/unapplied/prod/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/unapplied/prod/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/unapplied/prod/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/prod/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /generated/unapplied/test/issuance1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/test/issuance1.json -------------------------------------------------------------------------------- /generated/unapplied/test/issuance2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/test/issuance2.json -------------------------------------------------------------------------------- /generated/unapplied/test/postfixIssuerCborHex.txt: -------------------------------------------------------------------------------- 1 | 0001 -------------------------------------------------------------------------------- /generated/unapplied/test/prefixIssuerCborHex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/test/prefixIssuerCborHex.txt -------------------------------------------------------------------------------- /generated/unapplied/tracing/alwaysFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/alwaysFail.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/blacklistSpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/blacklistSpending.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/directoryNodeMintingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/directoryNodeMintingPolicy.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/directorySpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/directorySpending.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/freezeAndSeizeTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/freezeAndSeizeTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/permissionedMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/permissionedMinting.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/permissionedTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/permissionedTransfer.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/programmableLogicBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/programmableLogicBase.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/programmableLogicGlobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/programmableLogicGlobal.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/programmableTokenMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/programmableTokenMinting.json -------------------------------------------------------------------------------- /generated/unapplied/tracing/protocolParametersNFTMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/generated/unapplied/tracing/protocolParametersNFTMinting.json -------------------------------------------------------------------------------- /hei.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/hei.yaml -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/image-1.png -------------------------------------------------------------------------------- /issue-tokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/issue-tokens.sh -------------------------------------------------------------------------------- /nix/containers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/containers.nix -------------------------------------------------------------------------------- /nix/outputs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/outputs.nix -------------------------------------------------------------------------------- /nix/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/pkgs.nix -------------------------------------------------------------------------------- /nix/project.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/project.nix -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /nix/utils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/nix/utils.nix -------------------------------------------------------------------------------- /preprod-network/.envrc.local: -------------------------------------------------------------------------------- 1 | export NEXT_PUBLIC_BLOCKFROST_API_KEY=preprodDbWTrlobwcl5ilo68prIlLVS82OwDzL7 -------------------------------------------------------------------------------- /preprod-network/.envrc.local.example: -------------------------------------------------------------------------------- 1 | export NEXT_PUBLIC_BLOCKFROST_API_KEY=preprod... -------------------------------------------------------------------------------- /preprod-network/blockfrost: -------------------------------------------------------------------------------- 1 | preprodDbWTrlobwcl5ilo68prIlLVS82OwDzL7 -------------------------------------------------------------------------------- /preprod-network/policy-issuers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preprod-network/policy-issuers.sqlite -------------------------------------------------------------------------------- /preprod-network/preprod-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preprod-network/preprod-env.json -------------------------------------------------------------------------------- /preprod-network/preprod_script_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preprod-network/preprod_script_root.json -------------------------------------------------------------------------------- /preview-network/blockfrost: -------------------------------------------------------------------------------- 1 | preview1F0TvMF5VAk70b5YPiR20njoEG9ByGjf -------------------------------------------------------------------------------- /preview-network/operator.sk: -------------------------------------------------------------------------------- 1 | addr_sk16dl4r4g22xw2dgt46elvc3s8lmdnh9zeuenzg23kfny8y764927q5whpfd -------------------------------------------------------------------------------- /preview-network/preview_script_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preview-network/preview_script_root.json -------------------------------------------------------------------------------- /preview-network/tx.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preview-network/tx.dot -------------------------------------------------------------------------------- /preview-network/tx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/preview-network/tx.json -------------------------------------------------------------------------------- /query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/query.sh -------------------------------------------------------------------------------- /register-stake-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/register-stake-scripts.sh -------------------------------------------------------------------------------- /src/examples/aiken/aiken/.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /src/examples/aiken/aiken/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/.gitignore -------------------------------------------------------------------------------- /src/examples/aiken/aiken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/README.md -------------------------------------------------------------------------------- /src/examples/aiken/aiken/aiken.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/aiken.lock -------------------------------------------------------------------------------- /src/examples/aiken/aiken/aiken.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/aiken.toml -------------------------------------------------------------------------------- /src/examples/aiken/aiken/plutus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/plutus.json -------------------------------------------------------------------------------- /src/examples/aiken/aiken/validators/transfer.ak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/aiken/validators/transfer.ak -------------------------------------------------------------------------------- /src/examples/aiken/haskell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/LICENSE -------------------------------------------------------------------------------- /src/examples/aiken/haskell/aiken-example.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/aiken-example.cabal -------------------------------------------------------------------------------- /src/examples/aiken/haskell/data/aiken-scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/data/aiken-scripts.json -------------------------------------------------------------------------------- /src/examples/aiken/haskell/exe/cip-143-cli/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/exe/cip-143-cli/Main.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/lib/Wst/Aiken/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/lib/Wst/Aiken/Error.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/lib/Wst/Aiken/Offchain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/lib/Wst/Aiken/Offchain.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/lib/Wst/Cli.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/lib/Wst/Cli.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/lib/Wst/Cli/App.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/lib/Wst/Cli/App.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/lib/Wst/Cli/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/lib/Wst/Cli/Command.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/test/Spec.hs -------------------------------------------------------------------------------- /src/examples/aiken/haskell/test/Wst/Aiken/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/haskell/test/Wst/Aiken/Test.hs -------------------------------------------------------------------------------- /src/examples/aiken/update-aiken-blueprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/aiken/update-aiken-blueprint.sh -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/LICENSE -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/exe/calculate-hashes/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/exe/calculate-hashes/Main.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/exe/convert-key/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/exe/convert-key/Main.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/exe/export-smart-tokens/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/exe/export-smart-tokens/Main.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/exe/regulated-stablecoin-cli/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/exe/regulated-stablecoin-cli/Main.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/exe/write-openapi-schema/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/exe/write-openapi-schema/Main.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/App.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/App.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/AppError.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/AppError.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Cli.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Cli.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Cli/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Cli/Command.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Client.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Client.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/ExampleTransfer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/ExampleTransfer.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/Failing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/Failing.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/LinkedList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/LinkedList.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/ProgrammableLogic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/ProgrammableLogic.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/TransferLogic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/TransferLogic.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/BuildTx/Utils.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/Endpoints/Deployment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/Endpoints/Deployment.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/Env.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/Env.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/Query.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/Query.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Offchain/Scripts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Offchain/Scripts.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Server.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Server/DemoEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Server/DemoEnvironment.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Server/PolicyIssuerStore.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Server/PolicyIssuerStore.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/lib/Wst/Server/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/lib/Wst/Server/Types.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/regulated-stablecoin.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/regulated-stablecoin.cabal -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/test/unit/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/test/unit/Spec.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/test/unit/Wst/Test/Env.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/test/unit/Wst/Test/Env.hs -------------------------------------------------------------------------------- /src/examples/regulated-stablecoin/test/unit/Wst/Test/UnitTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/examples/regulated-stablecoin/test/unit/Wst/Test/UnitTest.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/LICENSE -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/JSON/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/JSON/Utils.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/Directory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/Directory.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/IssuanceCborHexRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/IssuanceCborHexRef.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/ProgrammableLogic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/ProgrammableLogic.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/ProtocolParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/ProtocolParams.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/BuildTx/Utils.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Endpoints.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Endpoints.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Directory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Directory.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Operator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Operator.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Runtime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Runtime.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/TransferLogic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/TransferLogic.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Env/Utils.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Error.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Orphans.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Orphans.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Query.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Query.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Scripts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/Scripts.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/UTxODat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/lib/ProgrammableTokens/OffChain/UTxODat.hs -------------------------------------------------------------------------------- /src/programmable-tokens-offchain/programmable-tokens-offchain.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-offchain/programmable-tokens-offchain.cabal -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/LICENSE -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/Profile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/Profile.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/CodeLens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/CodeLens.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/AlwaysYields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/AlwaysYields.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ExampleTransferLogic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ExampleTransferLogic.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/Issuance.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/Issuance.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/IssuanceCborHex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/IssuanceCborHex.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ProgrammableLogicBase.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ProgrammableLogicBase.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ProtocolParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Contracts/ProtocolParams.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Core/Scripts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Core/Scripts.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/BlacklistCommon.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/BlacklistCommon.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/Common.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/MintBlacklist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/MintBlacklist.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/MintDirectory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/MintDirectory.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/SpendBlacklist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/SpendBlacklist.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/SpendDirectory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/LinkedList/SpendDirectory.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Types/Constants.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Types/Constants.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Types/PTokenDirectory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Types/PTokenDirectory.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/SmartTokens/Types/ProtocolParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/SmartTokens/Types/ProtocolParams.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/lib/Types/Constants.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/lib/Types/Constants.hs -------------------------------------------------------------------------------- /src/programmable-tokens-onchain/programmable-tokens-onchain.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-onchain/programmable-tokens-onchain.cabal -------------------------------------------------------------------------------- /src/programmable-tokens-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/LICENSE -------------------------------------------------------------------------------- /src/programmable-tokens-test/lib/ProgrammableTokens/Gen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/lib/ProgrammableTokens/Gen.hs -------------------------------------------------------------------------------- /src/programmable-tokens-test/lib/ProgrammableTokens/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/lib/ProgrammableTokens/Test.hs -------------------------------------------------------------------------------- /src/programmable-tokens-test/programmable-tokens-testlib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/programmable-tokens-testlib.cabal -------------------------------------------------------------------------------- /src/programmable-tokens-test/test/ProgrammableTokens/Test/DirectorySet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/test/ProgrammableTokens/Test/DirectorySet.hs -------------------------------------------------------------------------------- /src/programmable-tokens-test/test/ProgrammableTokens/Test/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/test/ProgrammableTokens/Test/Error.hs -------------------------------------------------------------------------------- /src/programmable-tokens-test/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/src/programmable-tokens-test/test/Spec.hs -------------------------------------------------------------------------------- /transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/transfer.sh -------------------------------------------------------------------------------- /tx-vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/wsc-poc/HEAD/tx-vis.sh --------------------------------------------------------------------------------