# BitBadges bindings for CosmWasm

This crate provides the custom bindings that are used to communicate with the custom modules on the BitBadges network from a CosmWasm smart contract. Currently only the NFT module bindings are exposed.

# Installation Add the crate to your smart contract's' Cargo.toml toml [dependencies] bitbadges-cosmwasm = { version = "0.0.7" }

# Exposed bindings This crate, as of now, exports binding only for the NFT module. In the future, more custom binding will be added. All the commands from the NFT Module are available and callable from a smart contract.

Creating Messages

NOTE: The BitBadges bindings do not cover messages that have already been implemented by the CosmWasm team, such as staking-related messages and fundamental ones like MsgSend. ​ You may want your contract to perform messages such as IssueDenom and MintNft operations at the end of its execution. To do this, create a message using the predefined functions: ​ - create_issue_denom_msg - create_mint_nft_msg - create_edit_nft_msg - create_transfer_nft_msg - create_transfer_denom_msg - create_burn_nft_msg - create_approve_nft_msg - create_approve_all_msg - create_revoke_msg

And add it to your response, like below ​ ```rust use cosmwasmstd::CosmosMsg; use bitbadgescosmwasm::{createmintnftmsg}; ​ ... ​ pub fn executemsgmintnft( deps: DepsMut, _env: Env, _info: MessageInfo, denomid: String, name: String, uri: String, data: String, sender: String, recipient: String, ) -> StdResult> { let msg = createmintnftmsg(denomid, name, uri, data, sender, recipient);

Ok(Response::new().add_message(msg))

} ```

Querying

​ In order to use the query functions enabled by the bindings, create a BitBadgesQuerier instance within your contract logic -- in either init() or query() entrypoints. You can access all the enabled queries through this object. ​ ```rust // src/contract.rs use bitbadgescosmwasm::{ BitBadgesQuerier, DenomResponse, Denom}; ​ ... ​pub fn querydenombyid(deps: Deps, denomid: String) -> StdResult { let querier = BitBadgesQuerier::new(&deps.querier); let res: DenomResponse = querier.querydenombyid(denom_id)?;

Ok(res)

}

```

Example

Please consult the example smart contract in /contracts/tester - there you can see an example how to issue a transaction or make a query from the smart contract to the custom module. You can upload it and interact with it ( and through it - with the bitbadges chain) with the following steps

```bash clonedDir='path/to/the/test/smart/contract/binary' bitbadges-noded tx wasm store $clonedDir/bindings_tester.wasm --from=

--chain-id= --gas=auto -y INIT='{}' CODE='1' bitbadges-noded tx wasm instantiate $CODE $INIT --from=
--label="tester" --chain-id= --gas=auto -y TESTER=$(bitbadges-noded query wasm list-contract-by-code $CODE --output json | jq -r '.contracts[-1]') echo $TESTER

NOTE: sender field in the queries should be the address of your contract, in this case - $TESTER

issueDenom

NOTE: schema is optional field

issueDenomQuery='{ "issuedenommsg": { "id": "testdenom", "name": "TESTDENOM", "symbol": "testSymbol", "schema": "testschema" } }' bitbadges-noded tx wasm execute $TESTER $issueDenomQuery --from=

--chain-id= --gas=auto -y

mint a NFT

put the desired recipient address in the json below. Only denom_id, name and recipient are mandatory fields.

mintNft='{ "mintnftmsg": { "denom_id": "testdenom", "name": "", "uri": "", "data": "", "recipient": "" } }' bitbadges-noded tx wasm execute $TESTER $mintNft --from=

--chain-id= --gas=auto -y

edit a NFT

NOTE: only denomId and tokenId are mandatory. You can provide some or all of the other optional fields

editNft='{ "editnftmsg": { "denomid": "testdenom", "tokenid": "1", "name": "", "uri": "" } }' bitbadges-noded tx wasm execute $TESTER $editNft --from=

--chain-id= --gas=auto -y

transfer a NFT

put the desired addresses in from and to fields in the json below

transferNft='{ "transfernftmsg": { "denomid": "testdenom", "tokenid": "1", "from": "", "to": "" } }' bitbadges-noded tx wasm execute $TESTER $transferNft --from=

--chain-id= --gas=auto -y

transfer a NFT collection

put the desired recipient adress in to field in the json below

transferDenom='{ "transferdenommsg": { "denom_id": "testdenom", "to": "" } }' bitbadges-noded tx wasm execute $TESTER $transferDenom --from=

--chain-id= --gas=auto -y

add approved address for a NFT

addApprovedAddress='{ "approvenftmsg": { "denomid": "testdenom", "tokenid": "1", "approved_address": "" } }' bitbadges-noded tx wasm execute $TESTER $addApprovedAddress --from=

--chain-id= --gas=auto -y

add approve all for an address. PLEASE NOTE the lack of quotes around the boolean.

addApproveAll='{ "approveallmsg": { "approved_operator": "", "approved": true } }' bitbadges-noded tx wasm execute $TESTER $addApproveAll --from=

--chain-id= --gas=auto -y

revoke approval for a NFT

revokeApprovalNFT='{ "revokeapprovalmsg": { "denomid": "testdenom", "tokenid": "1", "addresstorevoke": "" } }' bitbadges-noded tx wasm execute $TESTER $revokeNFT --from=

--chain-id= --gas=auto -y

burn nft

burnNft='{ "burnnftmsg": { "denomid": "testdenom", "tokenid": "1" } }'

bitbadges-noded tx wasm execute $TESTER $burnNft --from=

--chain-id= --gas=auto -y

query a denom by ID

denomByIdQuery='{ "querydenombyid": { "denomid": "testdenom" } }' bitbadges-noded query wasm contract-state smart $TESTER $denomByIdQuery --output json

query a denom by Name

denomByNameQuery='{ "querydenombyname": { "denomname": "TESTDENOM"
} }' bitbadges-noded query wasm contract-state smart $TESTER $denomByNameQuery --output json

query a denom by Symbol

denomBySymbolQuery='{ "querydenombysymbol": { "denomsymbol": "testSymbol"
} }' bitbadges-noded query wasm contract-state smart $TESTER $denomBySymbolQuery --output json

query all denoms

denomsQuery='{ "query_denoms": {} }' bitbadges-noded query wasm contract-state smart $TESTER $denomsQuery --output json

query all NFTs related with a given denom

collectionQuery='{ "querycollection": { "denomid": "testdenom" } }' bitbadges-noded query wasm contract-state smart $TESTER $collectionQuery --output json

query the total count of minted NFTs from a given denom

supplyQuery='{ "querysupply": { "denomid": "testdenom" } }' bitbadges-noded query wasm contract-state smart $TESTER $supplyQuery --output json

query the NFTs owned by the given address from the given denom

denom_id is mandatory field. If not provided, returns all NFTs from all denoms owned by the address

ownerQuery='{ "queryowner": { "address": "", "denomid": "testdenom" } }' bitbadges-noded query wasm contract-state smart $TESTER $ownerQuery --output json

query for a NFT

nftQuery='{ "querytoken": { "denomid": "testdenom", "token_id": "1" } }' bitbadges-noded query wasm contract-state smart $TESTER $nftQuery --output json

query for the approved addresses associated with the given token of the denom

approvalsQuery='{ "queryapprovals": { "denomid": "testdenom", "token_id": "1" } }' bitbadges-noded query wasm contract-state smart $TESTER $approvalsQuery --output json

Query if an address is an authorized operator for another address

approvedForAllQuery='{ "queryapprovedforall": { "owneraddress": "", "operator_address": "" } }' bitbadges-noded query wasm contract-state smart $TESTER $approvedForAllQuery --output json