Skip to content

Commit 267eb7f

Browse files
committed
build cw20-base,cw721-base,cw1155-base
1 parent 9e135dc commit 267eb7f

File tree

8 files changed

+369
-363
lines changed

8 files changed

+369
-363
lines changed

contracts/cw1155-base/src/contract.rs

Lines changed: 73 additions & 78 deletions
Large diffs are not rendered by default.

contracts/cw1155-base/src/msg.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use cosmwasm_std::HumanAddr;
1+
use cosmwasm_std::Addr;
22
use schemars::JsonSchema;
33
use serde::{Deserialize, Serialize};
44

@@ -7,5 +7,5 @@ pub struct InitMsg {
77
/// The minter is the only one who can create new tokens.
88
/// This is designed for a base token platform that is controlled by an external program or
99
/// contract.
10-
pub minter: HumanAddr,
10+
pub minter: Addr,
1111
}

contracts/cw20-base/src/allowances.rs

Lines changed: 69 additions & 73 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)