Skip to content

Commit

Permalink
Merge pull request #194 from tablelandnetwork/asutula/pricing
Browse files Browse the repository at this point in the history
Add a pricing feature
  • Loading branch information
asutula authored Oct 10, 2024
2 parents 13c750a + bdc5d65 commit 4d68bb1
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion lib/features.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import { type Feature } from "@/lib/types"
import { FaDatabase, FaLock, FaBriefcase, FaLink } from "react-icons/fa"
import {
FaDatabase,
FaLock,
FaBriefcase,
FaLink,
FaDollarSign,
} from "react-icons/fa"

const features: Feature[] = [
{
Expand Down Expand Up @@ -29,6 +35,13 @@ const features: Feature[] = [
"Live on Ethereum, Optimism, Arbitrum, Arbitrum Nova, and Polygon. Filecoin and zkEVMs coming soon.",
link: "https://docs.tableland.xyz/fundamentals/supported-chains",
},
{
title: "Pricing",
icon: FaDollarSign,
description:
"The Tableland protocol is integrated with various EVM networks and processes user payments per SQL write operation. These fees are payed as transaction gas in a way familiar to users of any blockchain-based technology.",
link: "https://docs.tableland.xyz/fundamentals/about/glossary#transaction",
},
]

export default features

0 comments on commit 4d68bb1

Please sign in to comment.