token-bonding-curves

Define and manage token prices and proceeds with bonding-curve models in Solidity smart contracts.

120|12|Updated Apr 10, 2026
One-click install
npx skills add https://github.com/ccashwell/evm-cortex --skill token-bonding-curves
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: token-bonding-curves
Source: https://github.com/ccashwell/evm-cortex/tree/main/skills/token-bonding-curves
Command: npx skills add https://github.com/ccashwell/evm-cortex --skill token-bonding-curves

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Bonding curves provide a principled way to price and release tokens as supply changes, enabling continuous or stepwise token sales with reserve backing.

Core Features & Use Cases

  • Supports linear, polynomial, logarithmic, sigmoid, and Bancor-style bonding curves for pricing tokens.
  • Includes buy/sell cost and proceeds calculations, price-at-supply, and reserve balance management.
  • Use cases include automated market making, continuous token offerings, and dynamic pricing for token sales.

Quick Start

Configure and deploy a bonding-curve contract for a token sale using your preferred tooling.

Frequently Asked Questions about token-bonding-curves

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement token bonding curves in Solidity smart contracts?

Token bonding curves are implemented in Solidity by defining price-at-supply calculations and Bancor-style reserve logic within smart contracts to manage dynamic token pricing. This supports automated market making and continuous token offerings.

What bonding curve models can I use for dynamic token pricing?

Dynamic token pricing supports linear, polynomial, logarithmic, sigmoid, and Bancor-style bonding curves. These models calculate buy and sell costs, proceeds, and reserve balances as token supply changes.

How do automated market makers calculate buy and sell proceeds with bonding curves?

Automated market makers calculate buy and sell proceeds by applying bonding curve formulas to determine token cost based on current supply. The smart contract manages reserve balance logic and executes transactions with safety checks.

Does this bonding curve approach include guardrails for smart contract safety?

Yes, bonding curve smart contracts include guardrails for non-reentrancy and safety checks during price calculations and reserve management. These protections secure buy and sell operations against common vulnerabilities.

When should I use a continuous token offering with a bonding curve?

Continuous token offerings utilize bonding curves when you need automated, dynamic pricing that adjusts as token supply changes. This provides reserve-backed token distribution without manual price setting.

Can I integrate Bancor-style reserve logic into my DeFi tokenomics model?

Yes, Bancor-style reserve logic integrates into DeFi tokenomics models by defining reserve balances and price-at-supply calculations in Solidity. This enables automated market making with continuous price adjustments.