Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions framework/packages/abstract-client/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ pub mod cw20_builder {
use crate::client::AbstractClientResult;

/// A builder for creating and deploying `Cw20` contract in a [`CwEnv`](cw_orch::prelude::CwEnv) environment.
///
/// Use the builder methods to specifiy the details of your cw20 token.
///
/// Use [`Self::instantiate_with_id`] to upload and instantiate your token.
pub struct Cw20Builder<Chain: CwEnv> {
chain: Chain,
name: String,
Expand Down