{"id":14286,"date":"2021-02-11T11:22:47","date_gmt":"2021-02-11T11:22:47","guid":{"rendered":"https:\/\/www.openbusinesscouncil.org\/?p=14286"},"modified":"2022-05-04T21:37:25","modified_gmt":"2022-05-04T21:37:25","slug":"defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace","status":"publish","type":"post","link":"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/","title":{"rendered":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace"},"content":{"rendered":"
\"\"
DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace<\/figcaption><\/figure>\n

Decentralized finance (DeFi<\/a>) is heating up. Amazon\u2019s AWS Marketplace is offering Origin Protocol\u2019s decentralized e-commerce platform Dshop to software-as-a-service customers (SaaS), as part of its partner network.<\/strong><\/p>\n

By Matthew Liu, cofounder of Origin Protocol and Kevin Goodspeed, a Senior Category Manager at AWS Marketplace<\/strong><\/p>\n

One of the emerging themes of the post-Web 2.0 world is decentralization, and more internet users are seeking greater control over their activities and data. Blockchain is a technology that enables the removal of traditional intermediaries from a vast array of applications. Blockchains provide a tamper-proof history of records and transactions in a series of blocks, or a ledger. Each block is cryptographically linked to a previous one, and any change to a block corrupts all subsequent blocks. Originally envisioned for peer-to-peer payments, some blockchains can also support business logic code, or smart contracts.\u00a0Ethereum<\/a>, created in 2015, is the largest blockchain that supports smart contracts, and it currently supports billions of dollars in economic activity and value.<\/p>\n

Origin Protocol\u2019s\u00a0Dshop<\/a>, available in\u00a0AWS Marketplace<\/a>, is an open platform for ecommerce that uses the Ethereum blockchain. Origin Protocol is an\u00a0AWS Partner Network<\/a>\u00a0(APN) Technology Partner. Dshop has no setup costs and is 100% open source and customizable. Cryptocurrency payments are irreversible, peer-to-peer, and fast. Dshop supports cryptocurrency payments including OUSD, OGN, ETH, DAI, and all ERC-20 tokens, which reduces chargeback risk, cross-border payment overhead and delays, and processing fees.<\/p>\n

In this post, I show how to create ecommerce storefronts that support cryptocurrency payments.<\/p>\n

How it works<\/h2>\n

The entire front-end application logic, product database, and supporting media (such as product images) are hosted on the Dshop backend, which is an\u00a0Amazon EC2<\/a>\u00a0instance. Customers go through the typical purchase flow and pay via their Ethereum wallet at checkout. The merchant can configure their store to accept ETH, Ethereum\u2019s native cryptocurrency, any Ethereum token that they want, or both. Dshop has integrations with\u00a0Stripe<\/a>\u00a0and\u00a0PayPal<\/a>\u00a0for merchants who want to accept traditional forms of payment. Dshop also supports cash and manual payment methods.<\/p>\n

Customer and order details are encrypted with Pretty Good Privacy (PGP). The resulting hash and Ethereum payment transaction hash is sent to the Origin Dshop backend for verification. For a credit card payment, only the order details and transaction information are sent. This data is then downloaded and decrypted, which enables the merchant to send notification emails and fulfill orders.<\/p>\n

Prerequisites<\/h2>\n

An AWS account<\/p>\n

Solution walkthrough<\/h2>\n

Here is a step-by-step guide to launching a Dshop store. For more information, see the\u00a0full documentation with images and support<\/a>\u00a0on GitHub.<\/p>\n

Step 1: Deploying Dshop<\/h3>\n

Here is how to deploy your Dshop storefront. The first step involves subscribing to Dshop in AWS Marketplace and deploying it on an EC2 instance. Follow these steps to start the process of setting up your own Dshop.<\/p>\n

Step 1.1 Subscribing to Dshop<\/h4>\n

1. Go to the\u00a0Origin Protocol Dshop solution<\/a>\u00a0in AWS Marketplace.
\n2. Choose\u00a0Continue to Subscribe<\/strong>.
\n3. Accept the AWS terms of service if necessary. After a few minutes, you see the license effective date instead of\u00a0Pending<\/strong>.
\n4. Choose\u00a0Continue to Configuration<\/strong>.
\n5. Choose the version that you want to run and the Region that you want to deploy to. The latest version is generally preferred.
\n6. Choose\u00a0Continue to Launch<\/strong>.<\/p>\n

Step 1.2 Deploying Dshop on the EC2 instance<\/strong><\/h4>\n

1. For\u00a0Choose Action<\/strong>, choose\u00a0Launch from Website<\/strong>.
\n2. Choose your instance type. A minimum of 1 GB of RAM and 10 GB disk is recommended, which is\u00a0
equivalent to at least a t2.micro<\/a>. Make sure that your security group has ports 80 and 443 open so that you can access the admin.
\n3. Select the VPC and subnet for the deployment of the new instance. The default settings are recommended. To use SSH access with the EC2 instance, choose a security group with port 22 open.
\n4. Choose a key pair from the available list.
\n5. If you do not have a key pair, go to the\u00a0
EC2<\/a>\u00a0console<\/a>. In the navigation pane, under\u00a0NETWORK & SECURITY<\/strong>, choose\u00a0Key Pairs<\/strong>. Choose\u00a0Create key pair<\/strong>.
\n6. Return to the solution page and choose\u00a0Launch<\/strong>.<\/p>\n

Step 2: Configuring the domain and the Dshop node<\/h3>\n

Next, you configure the domain settings to work with the Dshop node. This allows visitors to navigate to your storefront. For more information, follow the instructions in\u00a0Working with records<\/a>\u00a0in the\u00a0Amazon Route 53 Developer Guide<\/em>.<\/p>\n

Step 2.1 Configuring the domain<\/h4>\n

1. Get the IP address assigned to your new instance\u00a0from the EC2 console<\/a>.<\/u>
\n2.
In the Route 53 console<\/a>, select the zone you want to add this record to. The zone is your domain name. Choose\u00a0Create record<\/strong>. You will create a new A record pointing at this address.
\n3. Choose\u00a0Simple Routing<\/strong>.
\n4. Define the record, for example\u00a0api.mydomain.com<\/code>\u00a0This is the backend administration URL and used as the shop\u2019s backend. It is not the domain that your customers use to view the store.
\n5. Choose\u00a0Create records<\/strong>.
\n6. In a few minutes, you can access the Dshop onboarding page by navigating to\u00a0api.mydomain.com<\/code>\u00a0(or your chosen record) in your browser.<\/p>\n

Step 2.1 Configuring the Dshop node<\/h4>\n

1. In a browser window, navigate to\u00a0api.mydomain.com<\/code>\u00a0or your chosen record, and then enter your name and email address.
\n2. For the password, use the instance ID. For example,\u00a0i-08bd2cff62ea24048<\/code>.
\n3. In a new browser window, configure the server by following this. Use the EC2 instance ID as your initial password.<\/p>\n

Stpe 3: Creating the Dshop store<\/h3>\n

After launching the Dshop node and configuring the domain, you can create and customize the Dshop storefront.<\/p>\n

Step 3.1 Choosing the payment settings<\/h4>\n

1. In a new browser window, go to\u00a0api.mydomain.com<\/code>\u00a0and enter your credentials.
\n2. Choose\u00a0Settings<\/strong>\u00a0and then\u00a0Payments<\/strong>.
\n3. To accept cryptocurrency payments, under\u00a0Cryptocurrency Payments<\/strong>, choose\u00a0Connect<\/strong>\u00a0or enter an Ethereum wallet address manually. Skip this step if you do not want to accept cryptocurrency payments.
\n4. Optionally, you can connect your Stripe or PayPal account and accept credit card payments. An Ethereum wallet isn\u2019t required.
\n5. To save the settings and return to the home page, choose\u00a0Update<\/strong>.<\/p>\n

Step 3.2 Customizing the store<\/h4>\n

1. To create item listings, choose\u00a0Products<\/strong>.
\n2. To create public collections of certain product types to help customers navigate your listings, choose\u00a0Collections<\/strong>. These collections appear on the storefront.
\n3. To customize the look and feel of the store, choose\u00a0Themes<\/strong>.
\n4. To configure third-party integrations, manage shipping and tax settings, or access other advanced features, choose\u00a0Settings<\/strong>.
\n5. When you are finished, choose\u00a0Publish Changes<\/strong>.<\/p>\n

Cleanup<\/h2>\n

After you have finished, delete the deployed resources to prevent incurring ongoing costs. To do this, follow these steps:<\/p>\n

1. Delete the EC2 instance that you set up to launch the Dshop.<\/p>\n

2. Delete the Route 53 records associated with your Dshop.<\/p>\n

Conclusion<\/h2>\n

In this blog post, I show how to launch a custom storefront that enables decentralized payments. You can accept cryptocurrency payments for your listings and start doing business globally without setting up accounts at payment processors or merchant banks.<\/p>\n","protected":false},"excerpt":{"rendered":"

Decentralized finance (DeFi) is heating up. Amazon\u2019s AWS Marketplace is offering Origin Protocol\u2019s decentralized e-commerce platform Dshop to software-as-a-service customers (SaaS), as part of its partner network. By Matthew Liu, cofounder of Origin Protocol and Kevin Goodspeed, a Senior Category Manager at AWS Marketplace One of the emerging themes of the post-Web 2.0 world is […]<\/p>\n","protected":false},"author":7,"featured_media":14287,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_mo_disable_npp":""},"categories":[3585,3501],"tags":[11099,19334,4596],"acf":[],"yoast_head":"\nDeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace - OpenBusinessCouncil Directory<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace\" \/>\n<meta property=\"og:description\" content=\"Decentralized finance (DeFi) is heating up. Amazon\u2019s AWS Marketplace is offering Origin Protocol\u2019s decentralized e-commerce platform Dshop to software-as-a-service customers (SaaS), as part of its partner network. By Matthew Liu, cofounder of Origin Protocol and Kevin Goodspeed, a Senior Category Manager at AWS Marketplace One of the emerging themes of the post-Web 2.0 world is […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/\" \/>\n<meta property=\"og:site_name\" content=\"OpenBusinessCouncil Directory\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-11T11:22:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-04T21:37:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.footballthink.com\/wp-content\/uploads\/2021\/02\/DeFi-And-SaaS-Applications-Decentralized-e-commerce-Platform-Dshop-To-Join-Amazons-AWS-Marketplace.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"848\" \/>\n\t<meta property=\"og:image:height\" content=\"477\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Hernaldo Turrillo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hernaldo Turrillo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/\"},\"author\":{\"name\":\"Hernaldo Turrillo\",\"@id\":\"https:\/\/www.footballthink.com\/#\/schema\/person\/b9610afd0759dc701187a7f622375c23\"},\"headline\":\"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace\",\"datePublished\":\"2021-02-11T11:22:47+00:00\",\"dateModified\":\"2022-05-04T21:37:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/\"},\"wordCount\":1158,\"publisher\":{\"@id\":\"https:\/\/www.footballthink.com\/#organization\"},\"keywords\":[\"Amazon\",\"defi\",\"e-commerce\"],\"articleSection\":[\"Business Resources\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/\",\"url\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/\",\"name\":\"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace - OpenBusinessCouncil Directory\",\"isPartOf\":{\"@id\":\"https:\/\/www.footballthink.com\/#website\"},\"datePublished\":\"2021-02-11T11:22:47+00:00\",\"dateModified\":\"2022-05-04T21:37:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.footballthink.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.footballthink.com\/#website\",\"url\":\"https:\/\/www.footballthink.com\/\",\"name\":\"OpenBusinessCouncil Directory\",\"description\":\"Openbusinesscouncil\",\"publisher\":{\"@id\":\"https:\/\/www.footballthink.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.footballthink.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\/\/www.footballthink.com\/#organization\",\"name\":\"openbusinesscounsil\",\"url\":\"https:\/\/www.footballthink.com\/\",\"sameAs\":[],\"logo\":{\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.footballthink.com\/#\/schema\/person\/b9610afd0759dc701187a7f622375c23\",\"name\":\"Hernaldo Turrillo\",\"description\":\"Hernaldo Turrillo is a writer and author specialised in innovation, AI, DLT, SMEs, trading, investing and new trends in technology and business. He has been working for ztudium group since 2017. He is the editor of openbusinesscouncil.org, tradersdna.com, hedgethink.com, and writes regularly for intelligenthq.com, socialmediacouncil.eu. Hernaldo was born in Spain and finally settled in London, United Kingdom, after a few years of personal growth. Hernaldo finished his Journalism bachelor degree in the University of Seville, Spain, and began working as reporter in the newspaper, Europa Sur, writing about Politics and Society. He also worked as community manager and marketing advisor in Los Barrios, Spain. Innovation, technology, politics and economy are his main interests, with special focus on new trends and ethical projects. He enjoys finding himself getting lost in words, explaining what he understands from the world and helping others. Besides a journalist, he is also a thinker and proactive in digital transformation strategies. Knowledge and ideas have no limits.\",\"url\":\"https:\/\/www.footballthink.com\/author\/hturrillo\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo\",\"url\":\"https:\/\/www.footballthink.com\/wp-content\/uploads\/2017\/04\/logo_big.png\",\"contentUrl\":\"https:\/\/www.footballthink.com\/wp-content\/uploads\/2017\/04\/logo_big.png\",\"width\":1161,\"height\":250,\"caption\":\"openbusinesscounsil\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace - OpenBusinessCouncil Directory","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/","og_locale":"en_US","og_type":"article","og_title":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace","og_description":"Decentralized finance (DeFi) is heating up. Amazon\u2019s AWS Marketplace is offering Origin Protocol\u2019s decentralized e-commerce platform Dshop to software-as-a-service customers (SaaS), as part of its partner network. By Matthew Liu, cofounder of Origin Protocol and Kevin Goodspeed, a Senior Category Manager at AWS Marketplace One of the emerging themes of the post-Web 2.0 world is […]","og_url":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/","og_site_name":"OpenBusinessCouncil Directory","article_published_time":"2021-02-11T11:22:47+00:00","article_modified_time":"2022-05-04T21:37:25+00:00","og_image":[{"width":848,"height":477,"url":"https:\/\/www.footballthink.com\/wp-content\/uploads\/2021\/02\/DeFi-And-SaaS-Applications-Decentralized-e-commerce-Platform-Dshop-To-Join-Amazons-AWS-Marketplace.jpg","type":"image\/jpeg"}],"author":"Hernaldo Turrillo","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Hernaldo Turrillo","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#article","isPartOf":{"@id":"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/"},"author":{"name":"Hernaldo Turrillo","@id":"https:\/\/www.footballthink.com\/#\/schema\/person\/b9610afd0759dc701187a7f622375c23"},"headline":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace","datePublished":"2021-02-11T11:22:47+00:00","dateModified":"2022-05-04T21:37:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/"},"wordCount":1158,"publisher":{"@id":"https:\/\/www.footballthink.com\/#organization"},"keywords":["Amazon","defi","e-commerce"],"articleSection":["Business Resources","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.footballthink.com\/defi-and-saas-applications-decentralized-e-commerce-platform-dshop-to-join-amazons-aws-marketplace\/","url":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/","name":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace - OpenBusinessCouncil Directory","isPartOf":{"@id":"https:\/\/www.footballthink.com\/#website"},"datePublished":"2021-02-11T11:22:47+00:00","dateModified":"2022-05-04T21:37:25+00:00","breadcrumb":{"@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.footballthink.com\/"},{"@type":"ListItem","position":2,"name":"DeFi And SaaS Applications: Decentralized e-commerce Platform Dshop To Join Amazon\u2019s AWS Marketplace"}]},{"@type":"WebSite","@id":"https:\/\/www.footballthink.com\/#website","url":"https:\/\/www.footballthink.com\/","name":"OpenBusinessCouncil Directory","description":"Openbusinesscouncil","publisher":{"@id":"https:\/\/www.footballthink.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.footballthink.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/www.footballthink.com\/#organization","name":"openbusinesscounsil","url":"https:\/\/www.footballthink.com\/","sameAs":[],"logo":{"@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"opens":"09:00","closes":"17:00"}]},{"@type":"Person","@id":"https:\/\/www.footballthink.com\/#\/schema\/person\/b9610afd0759dc701187a7f622375c23","name":"Hernaldo Turrillo","description":"Hernaldo Turrillo is a writer and author specialised in innovation, AI, DLT, SMEs, trading, investing and new trends in technology and business. He has been working for ztudium group since 2017. He is the editor of openbusinesscouncil.org, tradersdna.com, hedgethink.com, and writes regularly for intelligenthq.com, socialmediacouncil.eu. Hernaldo was born in Spain and finally settled in London, United Kingdom, after a few years of personal growth. Hernaldo finished his Journalism bachelor degree in the University of Seville, Spain, and began working as reporter in the newspaper, Europa Sur, writing about Politics and Society. He also worked as community manager and marketing advisor in Los Barrios, Spain. Innovation, technology, politics and economy are his main interests, with special focus on new trends and ethical projects. He enjoys finding himself getting lost in words, explaining what he understands from the world and helping others. Besides a journalist, he is also a thinker and proactive in digital transformation strategies. Knowledge and ideas have no limits.","url":"https:\/\/www.footballthink.com\/author\/hturrillo\/"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelligenthq.com\/amazons-aws-marketplace-offer-decentralized-e-commerce-platform-dshop-works\/#local-main-organization-logo","url":"https:\/\/www.footballthink.com\/wp-content\/uploads\/2017\/04\/logo_big.png","contentUrl":"https:\/\/www.footballthink.com\/wp-content\/uploads\/2017\/04\/logo_big.png","width":1161,"height":250,"caption":"openbusinesscounsil"}]}},"_links":{"self":[{"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/posts\/14286"}],"collection":[{"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/comments?post=14286"}],"version-history":[{"count":1,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/posts\/14286\/revisions"}],"predecessor-version":[{"id":14288,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/posts\/14286\/revisions\/14288"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/media\/14287"}],"wp:attachment":[{"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/media?parent=14286"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/categories?post=14286"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.footballthink.com\/wp-json\/wp\/v2\/tags?post=14286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}