+ )
+}
+
+export async function generateMetadata({
+ params,
+}: {
+ params: Promise<{ locale: string }>
+}) {
+ const { locale } = await params
+ const t = await getTranslations({ locale, namespace: "page-enterprise" })
+ return await getMetadata({
+ locale,
+ slug: ["enterprise"],
+ title: t("page-enterprise-hero-title"),
+ description: t("page-enterprise-metadata-description"),
+ image: "/images/heroes/enterprise-hero-white.png",
+ })
+}
+
+Page.displayName = "EnterprisePage"
+
+export default Page
diff --git a/app/[locale]/enterprise/types.ts b/app/[locale]/enterprise/types.ts
new file mode 100644
index 00000000000..a089f5debaf
--- /dev/null
+++ b/app/[locale]/enterprise/types.ts
@@ -0,0 +1,16 @@
+export type Case = {
+ name: string
+ content: string | React.ReactNode
+}
+
+export type Feature = {
+ header: string
+ content: string[]
+ iconName: string
+}
+
+export type EcosystemPlayer = {
+ name: string
+ Logo: React.FC>
+ className?: string
+}
diff --git a/app/[locale]/enterprise/utils.ts b/app/[locale]/enterprise/utils.ts
new file mode 100644
index 00000000000..6575bd0fe5d
--- /dev/null
+++ b/app/[locale]/enterprise/utils.ts
@@ -0,0 +1,105 @@
+import { getLocale, getTranslations } from "next-intl/server"
+
+import type {
+ AllEnterpriseActivityData,
+ Lang,
+ StatsBoxMetric,
+} from "@/lib/types"
+
+import {
+ formatLargeNumber,
+ formatLargeUSD,
+ formatSmallUSD,
+} from "@/lib/utils/numbers"
+import { getLocaleForNumberFormat } from "@/lib/utils/translations"
+
+// Convert numerical value to formatted values
+export const parseActivity = async ({
+ txCount,
+ txCostsMedianUsd,
+ stablecoinMarketCap,
+ ethPrice,
+ totalEthStaked,
+}: AllEnterpriseActivityData): Promise => {
+ const locale = (await getLocale()) as Lang
+ const t = await getTranslations({ locale, namespace: "page-enterprise" })
+
+ const localeForNumberFormat = getLocaleForNumberFormat(locale)
+
+ const txCountFormatted =
+ "error" in txCount
+ ? { error: txCount.error }
+ : {
+ ...txCount,
+ value: formatLargeNumber(txCount.value, localeForNumberFormat),
+ }
+
+ const medianTxCost =
+ "error" in txCostsMedianUsd
+ ? { error: txCostsMedianUsd.error }
+ : {
+ ...txCostsMedianUsd,
+ value: formatSmallUSD(txCostsMedianUsd.value, localeForNumberFormat),
+ }
+
+ const stablecoinMarketCapFormatted =
+ "error" in stablecoinMarketCap
+ ? { error: stablecoinMarketCap.error }
+ : {
+ ...stablecoinMarketCap,
+ value: formatLargeUSD(
+ stablecoinMarketCap.value,
+ localeForNumberFormat
+ ),
+ }
+
+ const hasEthStakerAndPriceData =
+ "value" in totalEthStaked && "value" in ethPrice
+ const totalStakedInUsd = hasEthStakerAndPriceData
+ ? totalEthStaked.value * ethPrice.value
+ : 0
+
+ const totalValueSecuringFormatted = !totalStakedInUsd
+ ? {
+ error:
+ "error" in totalEthStaked
+ ? totalEthStaked.error
+ : "error" in ethPrice
+ ? ethPrice.error
+ : "",
+ }
+ : {
+ ...totalEthStaked,
+ value: formatLargeUSD(totalStakedInUsd, localeForNumberFormat),
+ }
+
+ const metrics: StatsBoxMetric[] = [
+ {
+ label: t("page-enterprise-activity-tx-count"),
+ apiProvider: "growthepie",
+ apiUrl: "https://www.growthepie.xyz/fundamentals/transaction-count",
+ state: txCountFormatted,
+ },
+ {
+ label: t("page-enterprise-activity-stablecoin-mktcap"),
+ apiProvider: "DefiLlama",
+ apiUrl: "https://defillama.com/chain/ethereum",
+ state: stablecoinMarketCapFormatted,
+ },
+ {
+ label: t("page-enterprise-activity-value-protecting"),
+ apiProvider: "Dune Analytics",
+ apiUrl: "https://dune.com/hildobby/eth2-staking",
+ state: totalValueSecuringFormatted,
+ },
+
+ {
+ label: t("page-enterprise-activity-media-tx-cost"),
+ apiProvider: "growthepie",
+ apiUrl: "https://www.growthepie.xyz/fundamentals/transaction-costs",
+ state: medianTxCost,
+ },
+ ]
+
+ return metrics
+}
diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx
index 26dfd6cf9cd..6d727b71073 100644
--- a/app/[locale]/page.tsx
+++ b/app/[locale]/page.tsx
@@ -5,13 +5,16 @@ import { getTranslations, setRequestLocale } from "next-intl/server"
import { FaDiscord, FaGithub } from "react-icons/fa6"
import { FaXTwitter } from "react-icons/fa6"
-import type { AllMetricData, CommunityBlog, ValuesPairing } from "@/lib/types"
+import type {
+ AllHomepageActivityData,
+ CommunityBlog,
+ ValuesPairing,
+} from "@/lib/types"
import type { EventCardProps } from "@/lib/types"
import type { Lang } from "@/lib/types"
import { CodeExample } from "@/lib/interfaces"
import ActivityStats from "@/components/ActivityStats"
-import { getActivity } from "@/components/ActivityStats/getActivity"
import BannerNotification from "@/components/Banners/BannerNotification"
import { ChevronNext } from "@/components/Chevron"
import HomeHero from "@/components/Hero/HomeHero"
@@ -78,6 +81,7 @@ import {
} from "@/lib/constants"
import TenYearHomeBanner from "./10years/_components/TenYearHomeBanner"
+import { getActivity } from "./utils"
import SimpleDomainRegistryContent from "!!raw-loader!@/data/SimpleDomainRegistry.sol"
import SimpleTokenContent from "!!raw-loader!@/data/SimpleToken.sol"
@@ -410,7 +414,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
)
.slice(0, 3) as EventCardProps[] // Show 3 events ending soonest
- const metricResults: AllMetricData = {
+ const metricResults: AllHomepageActivityData = {
ethPrice,
totalEthStaked,
totalValueLocked,
diff --git a/src/components/ActivityStats/getActivity.tsx b/app/[locale]/utils.ts
similarity index 96%
rename from src/components/ActivityStats/getActivity.tsx
rename to app/[locale]/utils.ts
index 0fbe1026c20..bb5b608f49b 100644
--- a/src/components/ActivityStats/getActivity.tsx
+++ b/app/[locale]/utils.ts
@@ -5,7 +5,7 @@
import { getTranslations } from "next-intl/server"
-import type { AllMetricData, Lang, StatsBoxMetric } from "@/lib/types"
+import type { AllHomepageActivityData, Lang, StatsBoxMetric } from "@/lib/types"
import { getLocaleForNumberFormat } from "@/lib/utils/translations"
@@ -44,7 +44,7 @@ export const getActivity = async (
txCount,
txCostsMedianUsd,
ethPrice,
- }: AllMetricData,
+ }: AllHomepageActivityData,
locale: Lang
): Promise => {
const t = await getTranslations("page-index")
diff --git a/public/content/enterprise/index.md b/public/content/enterprise/use-cases/index.md
similarity index 93%
rename from public/content/enterprise/index.md
rename to public/content/enterprise/use-cases/index.md
index 605f69e2d96..3fc53665d0d 100644
--- a/public/content/enterprise/index.md
+++ b/public/content/enterprise/use-cases/index.md
@@ -1,70 +1,21 @@
---
-title: Enterprise on Ethereum Mainnet
+title: Enterprise use cases on Ethereum Mainnet
description: Guides, articles, and tools about enterprise applications on the public Ethereum blockchain
lang: en
---
-# Ethereum for enterprise {#ethereum-for-enterprise}
+# Enterprise use cases on Ethereum Mainnet {#ethereum-for-enterprise}
Ethereum can help many kinds of businesses, including large companies:
-
+
- Increase trust and reduce the cost of coordination between business parties
- Improve business network accountability and operational efficiency
- Build new business models and value creation opportunities
- Competitively future-proof their organization
-In the early years, many enterprise blockchain applications were built on private permissioned Ethereum compatible blockchains or consortium chains. Today, thanks to technological advances which enable greater throughput, lower transaction cost, and privacy, most enterprise applications that use Ethereum technology are being built on the public Ethereum Mainnet or on [Layer 2](/layer-2) chains.
-
-
-## Resources {#enterprise-resources}
-
-### Further reading {#further-reading}
-
-Non-technical resources for understanding how businesses can benefit from Ethereum
-
-- [Why Are Blockchains Useful For Business?](https://entethalliance.org/why-are-blockchains-useful-for-business/) - _Discusses the value of blockchains through the lens of predictability_
-- [Enterprise Ethereum Alliance 2023 Business Readiness Report](https://entethalliance.org/eea-ethereum-business-readiness-report-2023/) - _surveys the potential and capabilities of public Ethereum and the broader Ethereum ecosystem for businesses_
-- [_Ethereum for Business_ by Paul Brody](https://www.uapress.com/product/ethereum-for-business/) - _is a plain-English guide to the use cases that generate returns from asset management to payments to supply chains_
-
-### Organizations {#organizations}
-
-Some collaborative efforts to make Ethereum enterprise friendly have been made by different organizations
-
-- [Enterprise Ethereum Alliance](https://entethalliance.org/) - The EEA helps organizations to adopt and use Ethereum technology in their daily business operations. Its goal is accelerating business Ethereum through professional and commercial support, advocacy and research, standards development and ecosystem trust services.
-- [Global Blockchain Business Council](https://www.gbbc.io/) - The GBBC is an industry association for the blockchain technology ecosystem. Through engaging policymakers and regulators, curating events and in-depth discussions, and driving research, GBBC is dedicated to further adoption of blockchain to create more secure, equitable, and functional societies.
-
-
-## Enterprise developer resources {#enterprise-developer-resources}
-
-### Scalability solutions {#scalability-solutions}
-
-Most new blockchain applications are being built on [Layer 2](/layer-2) chains. Layer 2 is a set of technologies or systems that run on top of Ethereum (Layer 1), inherit security properties from Layer 1, and provide greater transaction processing capacity (throughput), lower transaction fees (operating cost), and faster transaction confirmations than Layer 1. Layer 2 scaling solutions are secured by Layer 1, but they enable blockchain applications to handle many more users or actions or data than Layer 1 could accommodate. Many of them leverage recent advances in cryptography and zero-knowledge (ZK) proofs to maximize performance and security, and some offer an additional level of privacy.
-
-[L2 Beat](https://l2beat.com/scaling/summary) maintains an up to date list of Layer 2 networks and key metrics.
-
-### Products, services, and tools {#products-and-services}
-
-- [4EVERLAND](https://www.4everland.org/) - _provides APIs, RPC services and tools for hosting decentralized applications and enabling decentralized storage on Ethereum_
-- [Alchemy](https://www.alchemy.com/) - _provides API services and tools for building and monitoring applications on Ethereum_
-- [Baseline Project](https://www.baseline-protocol.org/) - _a set of tools and libraries that helps enterprises coordinate complex, multi-party business processes and workflows with privacy while keeping data in respective systems of record. The standard enables two or more state machines to achieve and maintain data consistency and workflow continuity by using a network as a common frame of reference._
-- [Blast](https://blastapi.io/) - _an API platform that provides RPC/WSS APIs for Ethereum Archive Mainnet and Testnets._
-- [Blockapps](https://blockapps.net/) - _implementation of the Enterprise Ethereum protocol, tooling and APIs that form the STRATO platform_
-- [Chainlens](https://www.chainlens.com/) - _SaaS and on-prem blockchain data and analytics platform from Web3 Labs_
-- [Chainstack](https://chainstack.com/) - _mainnet and testnet Ethereum infrastructure hosted in public & isolated customer clouds_
-- [ConsenSys](https://consensys.io/) - _provides a range of products and tools for building on Ethereum, as well as consulting and custom development services_
-- [Crossmint](http://crossmint.com/) _Enterprise-grade web3 development platform to deploy smart contracts, enable credit-card and cross chain payments, and use APIs to create, distribute, sell, store, and edit NFTs._
-- [Envision Blockchain](https://envisionblockchain.com/) - _provides enterprise focused consulting and development services specializing in Ethereum Mainnet_
-- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) - _provides a procurement workflow by issuing RFQ’s, contracts, purchase orders, and invoices across your network of trusted business partners_
-- [Hyperledger Besu](https://www.hyperledger.org/use/besu) - _an enterprise focused open-source Ethereum client developed under the Apache 2.0 license and written in Java_
-- [Infura](https://infura.io/) - _scalable API access to the Ethereum and IPFS networks_
-- [Kaleido](https://kaleido.io/) - _an enterprise-focused development platform that offers simplified blockchain and digital asset applications_
-- [Moralis](http://moralis.io/) - _enterprise grade APIs and Nodes with a SOC2 type 2 certification_
-- [Nightfall](https://github.com/EYBlockchain/nightfall_3) - _an application for transferring ERC20, ERC721 and ERC1155 applications under Zero Knowledge, using an Optimistic Rollup, from Ernst & Young_
-- [NodeReal](https://nodereal.io/) - _provides scalable blockchain infrastructure and API services provider for the Web3 ecosystem_
-- [QuickNode](https://www.quicknode.com/) - _provides reliable and fast nodes with high-level APIs like NFT API, Token API, etc., while delivering a unified product suite and enterprise-grade solutions_
-- [Tenderly](https://tenderly.co) - _a Web3 development platform that provides debugging, observability, and infrastructure building blocks for developing, testing, monitoring, and operating smart contracts_
-- [Unibright](https://unibright.io/) - _a team of blockchain specialists, architects, developers and consultants with 20+ years of experience in business processes and integration_
-- [Zeeve](https://www.zeeve.io/) - _provides a range of products and tools for building on Ethereum, also infrastructure and APIs for Enterprise Web3 applications._
+
+Get in touch
+
## Enterprise applications built on Ethereum {#enterprise-applications-on-ethereum}
@@ -77,15 +28,15 @@ Here are some of the enterprise applications that have been built on top of the
- [hCaptcha](https://www.hcaptcha.com/) - _Bot prevention CAPTCHA system which pays web site operators for the work done by users to label data for machine learning. Now deployed by Cloudflare_
- [Opera MiniPay](https://www.opera.com/products/minipay) - _makes mobile payments more accessible and secure for people in Africa with a non-custodial wallet and leverages phone numbers for easy transactions_
- [Roxpay](https://www.roxpay.ch/) - _automates pay-per-use asset invoicing and payments_
-- [SAP Digital Currency Hub](https://community.sap.com/t5/technology-blogs-by-sap/cross-border-payments-made-easy-with-digital-money-experience-the-future/ba-p/13560384) - _cross border payments with stablecoins_
-- [Toku](https://www.toku.com/) - _payroll, token grant administration, tax compliance, local employment, benefits & distributed HR solutions_
+- [SAP Digital Currency Hub](https://community.sap.com/t5/technology-blogs-by-sap/cross-border-payments-made-easy-with-digital-money-experience-the-future/ba-p/13560384) - _cross border payments with stablecoins_
+- [Toku](https://www.toku.com/) - _payroll, token grant administration, tax compliance, local employment, benefits & distributed HR solutions_
- [Xerof](https://www.xerof.com/) - _facilitates fast and inexpensive international (cross-border) B2B payments_
### Finance {#finance}
- [ABN AMRO](https://tokeny.com/tokeny-fuels-abn-amro-bank-in-tokenizing-green-bonds-on-polygon/) - _with Tokeny, tokenized green bonds_
- [Anvil](https://anvil.xyz/) - _a system of Ethereum-based smart contracts that manages collateral and issues fully secured credit_
-- [Mata Capital](https://consensys.io/blockchain-use-cases/finance/mata-capital) - _real estate investment tokenization_
+- [Mata Capital](https://consensys.io/blockchain-use-cases/finance/mata-capital) - _real estate investment tokenization_
- [Obligate](https://www.obligate.com/) - _regulated and KYC'd onchain bonds and commercial paper_
- [Siemens](https://press.siemens.com/global/en/pressrelease/siemens-remains-pioneer-another-digital-bond-successfully-issued-blockchain) - _bond issuance_
- [Sila](https://silamoney.com/) - _banking and ACH payments infrastructure-as-a-service, using a stablecoin_
@@ -96,7 +47,7 @@ Here are some of the enterprise applications that have been built on top of the
### Asset tokenization {#tokenization}
- [AgroToken](https://agrotoken.io/en/) - _tokenizing and trading agricultural commodities_
-- [Bitbond](https://www.bitbond.com/) - _improves the issuance, settlement and custody of financial assets with tokenization_
+- [Bitbond](https://www.bitbond.com/) - _improves the issuance, settlement and custody of financial assets with tokenization_
- [Blocksquare](https://blocksquare.io/) - _tokenization infrastructure for real estate_
- [Centrifuge](https://centrifuge.io/) - _tokenized receivables financing, debt, and assets_
- [Clearmatics](https://www.clearmatics.com) - _builds decentralised network platforms for the p2p exchange of tokenised value_
@@ -107,7 +58,7 @@ Here are some of the enterprise applications that have been built on top of the
- [Rubey](https://www.rubey.be/) - _a platform that tokenizes high-end art to make it accessible to retail investors_
- [Swarm](https://swarm.com/) - _a platform focused on the digitization and trading of real-world assets in a regulatory compliant manner_
- [Thallo](https://www.thallo.io/) - _a platform to integrate digital carbon credits into business transactions_
-- [Tokenchampions](https://tokenchampions.com/) - _tokenizes European football players' image rights_
+- [Tokenchampions](https://tokenchampions.com/) - _tokenizes European football players' image rights_
### Notarization of data {#notarization-of-data}
@@ -142,7 +93,7 @@ Here are some of the enterprise applications that have been built on top of the
### Identity, credentials and certifications {#credentials}
- [BCdiploma](https://www.bcdiploma.com/) - _digitizes and verifies diplomas, certificates, and micro-credentials_
-- [Bhutan National Digital Identity](https://www.bhutanndi.com/) - _a foundation for Bhutan’s digital economy, facilitating trusted interactions between individuals and organizations
+- [Bhutan National Digital Identity](https://www.bhutanndi.com/) - \_a foundation for Bhutan’s digital economy, facilitating trusted interactions between individuals and organizations
- [Hyland Credentials](https://www.hylandcredentials.com) - _digital diplomas and other education credentials, licenses, and certificates_
- [Palau Digital Residency Program](https://rns.id/) - _offers global citizens the ability to have a legal Palau government-issued ID_
- [QuarkID](https://quarkid.org/) _is a self-soverign identity protocol for managing essential personal documents such as birth and marriage certificates, academic credentials, and proof of income, developed by the government of Buenos Aires for use in Argentia and other South American countries_
@@ -156,6 +107,63 @@ Here are some of the enterprise applications that have been built on top of the
- [Lamborghini](https://venturebeat.com/games/lamborghini-and-animocas-motorverse-tap-base-blockchain-for-in-game-assets/) - _creates in-game assets for Animoca’s Web3 racing game Motorverse_
- [Nike Swoosh](https://www.swoosh.nike/) - _an NFT platform_
- [Sothbebys Metaverse](https://metaverse.sothebys.com/) - _a digital art NFT marketplace by Sothebys_
-- [Soneium](https://soneium.org/) - _a Layer 2 by Sony to support Web3 games and NFTs
+- [Soneium](https://soneium.org/) - \_a Layer 2 by Sony to support Web3 games and NFTs
If you would like to add to this list, please see [instructions for contributing](/contributing/).
+
+## Enterprise developer resources {#enterprise-developer-resources}
+
+### Scalability solutions {#scalability-solutions}
+
+Most new blockchain applications are being built on [Layer 2](/layer-2) chains. Layer 2 is a set of technologies or systems that run on top of Ethereum (Layer 1), inherit security properties from Layer 1, and provide greater transaction processing capacity (throughput), lower transaction fees (operating cost), and faster transaction confirmations than Layer 1. Layer 2 scaling solutions are secured by Layer 1, but they enable blockchain applications to handle many more users or actions or data than Layer 1 could accommodate. Many of them leverage recent advances in cryptography and zero-knowledge (ZK) proofs to maximize performance and security, and some offer an additional level of privacy.
+
+[L2 Beat](https://l2beat.com/scaling/summary) maintains an up to date list of Layer 2 networks and key metrics.
+
+### Products, services, and tools {#products-and-services}
+
+- [4EVERLAND](https://www.4everland.org/) - _provides APIs, RPC services and tools for hosting decentralized applications and enabling decentralized storage on Ethereum_
+- [Alchemy](https://www.alchemy.com/) - _provides API services and tools for building and monitoring applications on Ethereum_
+- [Baseline Project](https://www.baseline-protocol.org/) - _a set of tools and libraries that helps enterprises coordinate complex, multi-party business processes and workflows with privacy while keeping data in respective systems of record. The standard enables two or more state machines to achieve and maintain data consistency and workflow continuity by using a network as a common frame of reference._
+- [Blast](https://blastapi.io/) - _an API platform that provides RPC/WSS APIs for Ethereum Archive Mainnet and Testnets._
+- [Blockapps](https://blockapps.net/) - _implementation of the Enterprise Ethereum protocol, tooling and APIs that form the STRATO platform_
+- [Chainlens](https://www.chainlens.com/) - _SaaS and on-prem blockchain data and analytics platform from Web3 Labs_
+- [Chainstack](https://chainstack.com/) - _mainnet and testnet Ethereum infrastructure hosted in public & isolated customer clouds_
+- [ConsenSys](https://consensys.io/) - _provides a range of products and tools for building on Ethereum, as well as consulting and custom development services_
+- [Crossmint](http://crossmint.com/) _Enterprise-grade web3 development platform to deploy smart contracts, enable credit-card and cross chain payments, and use APIs to create, distribute, sell, store, and edit NFTs._
+- [Envision Blockchain](https://envisionblockchain.com/) - _provides enterprise focused consulting and development services specializing in Ethereum Mainnet_
+- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) - _provides a procurement workflow by issuing RFQ’s, contracts, purchase orders, and invoices across your network of trusted business partners_
+- [Hyperledger Besu](https://www.hyperledger.org/use/besu) - _an enterprise focused open-source Ethereum client developed under the Apache 2.0 license and written in Java_
+- [Infura](https://infura.io/) - _scalable API access to the Ethereum and IPFS networks_
+- [Kaleido](https://kaleido.io/) - _an enterprise-focused development platform that offers simplified blockchain and digital asset applications_
+- [Moralis](http://moralis.io/) - _enterprise grade APIs and Nodes with a SOC2 type 2 certification_
+- [Nightfall](https://github.com/EYBlockchain/nightfall_3) - _an application for transferring ERC20, ERC721 and ERC1155 applications under Zero Knowledge, using an Optimistic Rollup, from Ernst & Young_
+- [NodeReal](https://nodereal.io/) - _provides scalable blockchain infrastructure and API services provider for the Web3 ecosystem_
+- [QuickNode](https://www.quicknode.com/) - _provides reliable and fast nodes with high-level APIs like NFT API, Token API, etc., while delivering a unified product suite and enterprise-grade solutions_
+- [Tenderly](https://tenderly.co) - _a Web3 development platform that provides debugging, observability, and infrastructure building blocks for developing, testing, monitoring, and operating smart contracts_
+- [Unibright](https://unibright.io/) - _a team of blockchain specialists, architects, developers and consultants with 20+ years of experience in business processes and integration_
+- [Zeeve](https://www.zeeve.io/) - _provides a range of products and tools for building on Ethereum, also infrastructure and APIs for Enterprise Web3 applications._
+
+## Resources {#enterprise-resources}
+
+### Further reading {#further-reading}
+
+Non-technical resources for understanding how businesses can benefit from Ethereum
+
+- [Why Are Blockchains Useful For Business?](https://entethalliance.org/why-are-blockchains-useful-for-business/) - _Discusses the value of blockchains through the lens of predictability_
+- [Enterprise Ethereum Alliance 2023 Business Readiness Report](https://entethalliance.org/eea-ethereum-business-readiness-report-2023/) - _surveys the potential and capabilities of public Ethereum and the broader Ethereum ecosystem for businesses_
+- [_Ethereum for Business_ by Paul Brody](https://www.uapress.com/product/ethereum-for-business/) - _is a plain-English guide to the use cases that generate returns from asset management to payments to supply chains_
+
+### Organizations {#organizations}
+
+Some collaborative efforts to make Ethereum enterprise friendly have been made by different organizations
+
+- [Enterprise Ethereum Alliance](https://entethalliance.org/) - The EEA helps organizations to adopt and use Ethereum technology in their daily business operations. Its goal is accelerating business Ethereum through professional and commercial support, advocacy and research, standards development and ecosystem trust services.
+- [Global Blockchain Business Council](https://www.gbbc.io/) - The GBBC is an industry association for the blockchain technology ecosystem. Through engaging policymakers and regulators, curating events and in-depth discussions, and driving research, GBBC is dedicated to further adoption of blockchain to create more secure, equitable, and functional societies.
+
+
+