├── .prettierignore ├── .prettierrc.json ├── README.md ├── SOWG ├── 1-polkadot-token-standard.md └── NFT-Migration-Protocol.md ├── archive └── sowg-archive.md ├── drafts └── sowg-template.md ├── package.json └── src └── substrate_logo.png /.prettierignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/README.md -------------------------------------------------------------------------------- /SOWG/1-polkadot-token-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/SOWG/1-polkadot-token-standard.md -------------------------------------------------------------------------------- /SOWG/NFT-Migration-Protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/SOWG/NFT-Migration-Protocol.md -------------------------------------------------------------------------------- /archive/sowg-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/archive/sowg-archive.md -------------------------------------------------------------------------------- /drafts/sowg-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/drafts/sowg-template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/package.json -------------------------------------------------------------------------------- /src/substrate_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-open-working-groups/HEAD/src/substrate_logo.png --------------------------------------------------------------------------------