diff --git a/docs/2.build/1.chain-abstraction/what-is.md b/docs/2.build/1.chain-abstraction/what-is.md
index c5adf3e765..290ce305bb 100644
--- a/docs/2.build/1.chain-abstraction/what-is.md
+++ b/docs/2.build/1.chain-abstraction/what-is.md
@@ -1,61 +1,117 @@
---
id: what-is
-title: What is Chain Abstraction?
+title: What is Chain Abstraction?
---
-
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
-import {CodeTabs, Language, Github} from "@site/src/components/codetabs"
-
-The idea behind `chain abstraction` is quite simple: **blockchain** technology should be **abstracted away** from the user experience. In other words, people should **not realize** when they are **using a blockchain**, nor **which blockchain** they are using.
+import {CodeTabs, Language, Github} from "@site/src/components/codetabs";
![img](/docs/assets/welcome-pages/chain-abstraction-landing.png)
-To help on this task, NEAR Protocol provides services that allow to **create** and **recover accounts** using **email addresses**, use the account **without acquiring funds**, and **control accounts** in **other chains**. All in the most **seamless** way possible.
+`Chain abstraction` is about **abstracting away** the complexities of **blockchain technology** from end-user experiences while maintaining its benefits. Users should not have to worry about which blockchain they are using or whether they are using one at all. NEAR Protocol advances this vision by introducing a framework that transcends single-platform development, enabling applications to control assets across any blockchain.
----
+:::info Example
+As an example, using Chain Abstraction a web app could allow users to collect NFTs across different chains, without users ever needing to explicitly create a blockchain account or acquire crypto tokens.
+:::
-## Relayers: Cover gas fees
-Allowing users to start using a dApp without having to acquire funds is a powerful tool to increase user adoption. NEAR Protocol provides a service that allows developers to subsidize gas fees for their users.
+## Chain Abstraction: The Holistic View
-This concept, known as "Account Abstraction" in other chains, is a **built-in feature** in NEAR. User can wrap transactions in messages known as **meta-transaction**, that any other account can relay to the network.
+The chain abstraction framework allows to create a **seamless** user experience, in which users can use blockchain-based applications without realizing they are using a blockchain.
+
+To achieve this goal and enable hassle-free access to a wider range of crypto assets, smart contracts, and blockchain states, the chain abstraction framework leverages a trio of key technologies: the [intent layer](#intent-layer), [chain signatures](#chain-signatures), and the [omnibridge](#omnibridge).
+
+You can see how these technologies interact together in the following high-level diagram:
+
+![Chain Abstraction Stack](/docs/assets/chain-abstract-1.png)
+_Chain Abstraction Stack high-level diagram_
+
+- The [intent layer](#intent-layer) serves as a foundational framework for user requests.
+- [Chain signatures](#chain-signatures) empower smart contracts to sign transactions across different assets and chains.
+- [Omnibridge](#omnibridge) facilitates communication and state transitions between various blockchains, ensuring that transactions are executed smoothly.
+
+### Intent layer
+
+In NEAR, an intent can be thought of as a high-level declaration of what a user wants to achieve on the blockchain. Solvers are active market participants that fill in the intents issued by users.
+The intent layer provides a message bus for communication between solvers and users.
+
+In summary, the intent layer allow users to express what they want to accomplish (their intention) while the network figures out the best way to make it happen.
+Developers building on NEAR can use intents to create more user-friendly interactions, as it abstracts some of the complexities of directly interacting with smart contracts.
+
+NEAR intents work by:
+- Expressing needs: Define your `intent`.
+- Network response: NEAR finds the optimal solution. (Solvers)
+- Seamless execution: Tasks are completed when parameters are met.
+- Collaboration: Agents work together if needed.
+
+:::info Example
+A user creates a wishlist, and let NEAR Intents find the item, add it to the cart, and pay for it as soon as it goes on sale.
+:::
+
+### Chain Signatures
+
+By using [Multi-Party Computation (MPC)](../../1.concepts/abstraction/chain-signatures.md#multi-party-computation-service), Chain Signatures enables accounts and smart contracts on the NEAR blockchain to sign and execute transactions on external chains, such as Bitcoin, Ethereum, and Base.
+
+For example, this allows a dApp built on NEAR to interact with Bitcoin’s UTXO model, enabling advanced functionality like asset transfers or decentralized finance (DeFi) protocols.
:::tip
-In NEAR the relayers simply attach NEAR to cover gas fees, and pass the transaction to the network. There, the transaction is executed as if the **user had sent it**.
+To learn more about Chain Signatures, the concepts, and how to implement it, check these articles:
+- [What are Chain Signatures?](../../1.concepts/abstraction/chain-signatures.md)
+- [Getting started with Chain Signatures](chain-signatures/getting-started.md)
+- [Implementing Chain Signatures](chain-signatures/chain-signatures.md)
:::
-
+### OmniBridge
+
+The [OmniBridge](https://github.com/Near-One/omni-bridge) is a multi-chain asset bridge that facilitates secure and efficient asset transfers between different blockchain networks, leveraging NEAR Multi-Party Computation (MPC) and Chain Signatures technology.
+
+OmniBridge acts as an aggregator of various message passing layers and light clients, enabling NEAR smart contracts to access states on external blockchains including Bitcoin, Ethereum, and Solana.
+
+---
+
+## Multi-chain signatures: One account, multiple chains
-## Multi-chain signatures: One account, multiple chains
Currently, users and applications are siloed in different chains. This means that a user needs to create a new account for each chain they want to use. This is not only cumbersome for the user, but also for the developer who needs to maintain different codebases for each chain.
NEAR Protocol provides a multi-chain signature service that allows users to use their NEAR Account to sign transactions in **other chains**. This means that a user can use the same account to interact with **Ethereum**, **Binance Smart Chain**, **Avalanche**, and **NEAR**.
+![Chain Signatures](/docs/assets/chain-abstract-2.png)
+
:::info
Multi-chain signatures work by combining **smart contracts** that produce signatures, with indexers that listen for these signatures, and relayers that submit the transactions to other networks. This allows users to hold assets and use applications in **any** network, only needing to have a single NEAR account.
:::
-
+---
-## Fast-Auth: Email onboarding
-One of the first barriers that new users face when entering the world of Web3 is the need to create a crypto wallet. This generally implies the need to choose a wallet, create and store a recovery phrase, and obtain deposit funds to start using the account.
+## Applications
-With FastAuth, users only need to provide an email address to create a NEAR account. Using the same email address the user will be able to use their account across applications and devices.
+Thanks to significant advancements in the cryptocurrency space, including cross-chain interactions, account management, and the raise of AI applications, truly innovative projects are being developed in the NEAR ecosystem.
-:::warning
-FastAuth is being deprecated, stay tuned for updates
-:::
+### Bitcoin Use Cases
----
+By combining chain abstraction technologies, NEAR acts as a bridge to Bitcoin, where developers can harness Bitcoin’s security and decentralization alongside NEAR’s scalability and smart contract capabilities.
-## Chain Abstraction: The Holistic View
+A simple architecture for Bitcoin chain abstraction would include:
+- **Business logic on NEAR:** developers write smart contracts on NEAR, leveraging its high throughput, low fees, and comprehensive developer tooling.
+- **Bitcoin integration with Chain Signatures:** the smart contract sends a signature request to the NEAR blockchain, where the Chain Signatures module signs Bitcoin transactions securely. Then, the signed transaction is relayed to the Bitcoin network.
+- **User Experience:** Users interact with the dApp through a single account. Additionally, gas fees can be subsidized using [NEAR relayers](#relayers-cover-gas-fees), ensuring smooth onboarding.
-The combination of these services allows to create a **seamless** user experience, in which users can use blockchain-based applications without realizing they are using a blockchain.
+:::info Use cases
-Users will simply login with an email, and a **zero-fund** account will be created for them. No seed phrases to remember, no private keys to safe keep, and no need to acquire funds.
+Check [Proximity](https://www.proximity.dev/)'s list of Bitcoin use cases using NEAR Chain Abstraction:
-Once having their account, apps can ask the user to create meta-transactions and send them to any relayer. The relayer will pass the transaction to the network, attaching NEAR to pay for the execution fees. The transaction will then be executed as if the user had sent it, since the relayer is only there to attach NEAR to the submission.
+- [BitcoinFi](https://medium.com/@ProximityFi/building-bitcoin-native-dapps-with-nears-abstraction-stack-fb4aeb448eee#df89)
+- [Payment Gateways for Merchants](https://medium.com/@ProximityFi/building-bitcoin-native-dapps-with-nears-abstraction-stack-fb4aeb448eee#0c38)
+- [Cross-Chain NFT Platforms](https://medium.com/@ProximityFi/building-bitcoin-native-dapps-with-nears-abstraction-stack-fb4aeb448eee#521b)
+- [Bitcoin Custody Solutions](https://medium.com/@ProximityFi/building-bitcoin-native-dapps-with-nears-abstraction-stack-fb4aeb448eee#6a7c)
-If the user wants to interact with other blockchains, they can use their account to interact with a multi-chain signature relayer, which will relay the transaction to the right network, covering GAS fees.
+:::
+
+### Relayers: Cover gas fees
-As an example, this would allow users to collect NFTs across different chains, without ever needing to explicitly create an account or acquire crypto. All with just a single email login.
+Allowing users to start using a dApp without having to acquire funds is a powerful tool to increase user adoption. NEAR Protocol provides a service that allows developers to subsidize gas fees for their users.
+
+This concept, known as "Account Abstraction" in other chains, is a **built-in feature** in NEAR. User can wrap transactions in messages known as **meta-transaction**, that any other account can relay to the network.
+
+:::tip
+In NEAR the relayers simply attach NEAR to cover gas fees, and pass the transaction to the network. There, the transaction is executed as if the **user had sent it**.
+:::
diff --git a/website/package.json b/website/package.json
index d7ec1e31dd..14a298750e 100644
--- a/website/package.json
+++ b/website/package.json
@@ -43,6 +43,7 @@
"docusaurus-plugin-sass": "^0.2.5",
"gleap": "^13.7.3",
"https-browserify": "^1.0.0",
+ "lodash": "^4.17.21",
"monaco-editor": "^0.44.0",
"near-api-js": "^2.1.4",
"near-social-vm": "github:NearSocial/VM#2.5.5",
@@ -54,7 +55,6 @@
"react-is": "^18.2.0",
"react-monaco-editor": "^0.54.0",
"sass": "^1.69.5",
- "url": "^0.11.3",
- "lodash": "^4.17.21"
+ "url": "^0.11.3"
}
}
diff --git a/website/static/docs/assets/chain-abstract-1.png b/website/static/docs/assets/chain-abstract-1.png
new file mode 100644
index 0000000000..90cfb164cf
Binary files /dev/null and b/website/static/docs/assets/chain-abstract-1.png differ
diff --git a/website/yarn.lock b/website/yarn.lock
index dfa2bb3eb5..32132c10bf 100644
--- a/website/yarn.lock
+++ b/website/yarn.lock
@@ -5382,9 +5382,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001565, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599:
- version "1.0.30001640"
- resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001640.tgz"
- integrity sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==
+ version "1.0.30001692"
+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz"
+ integrity sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==
capability@^0.2.5:
version "0.2.5"