You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python interaction with juno chain (mospy, skip / white whale bots have some good work) https://github.com/ctrl-Felix/mospy & https://github.com/skip-mev/skipper/blob/main/src/transaction.py
Queries / getting data
query etc of a contract state (including past state with rest? and can do with RPC/CosmJS?)
Link to https://interchainacademy.cosmos.network/tutorials/6-cosmjs/2-first-steps.html
subscribe to Tendermint
# python example from my CosmosCache repo. Then these links show GOLang
You can subscribe to a query via the RPC websocket
https://rpc.cosmos.bh.rocks/subscribe?query=_
https://docs.tendermint.com/v0.34/rpc/
https://docs.tendermint.com/v0.34/tendermint-core/subscription.html
show mintscan.io of seeing contract data / information. (Include screenshots)
Misc
How keyring-backend works with CLI (test, os) many have issues with this
How to get all votes from a proposal? (Link cosmoscontracts repo but embed code directly)
How does gas work?
Explain gas = amount of compuate
Most networks in cosmos charge 0.0025ujuno per gas
So if you use 1,000,000 gas, it cost 0.0025*1000000 = 2500ujuno
Some validators may only allow a higher rate to ensure no spam transaction get though, so you may want to set the gas price to be more like 0.003 or 0.004 to be safe
steps for a release ( tag, discord, proposal, height requierments, timelines, etc -- may make sense to do in the main repo instead)
relaying
hermes
note
How to enable REST API & Make the RPC public (0.0.0.0 instead of localhost) + sed replace commands
NFTs (CW721)
Example marketplace? I have one from craft, simple example
(These are from BlockCreators, in the future we may decide to upstream to the cosmwasm book repo)
How do you submit an svg for a nft? (Check how CW20 base package does it in cw-plus)
Proxy contract: How can you have a contract call another contract to mint and send an nft?
How can you have an limited mint of nft that lets users buy until it reaches 0
How do I create a nft via an api call in my application?
How do I query all the nfts that an address holds?
how can you query the metadata of an nft that a user has? (get specific NFT information)
how to burn an NFT
how to mint an NFT on some function call of a contract (ex: after a burn, like a 1:1 redeem)
How can you have an unlimited mint of nft that lets users buy forever (mint the same NFT to any user who interacts with it)
how can you display an svg nft by getting it from an address from application?
How do I send an nft to a contract via an api call in my application?
How to save a map to storage? (BTreeMap)
Contracts
How do I store a list in a contract and each unique address can add a name to it by calling a function, and can override their own one.
How can I query this list in the contract and get the stored name by supplying the unique address.
how do I check if a change has been made on a contract? must I do a call every time period?
how do I check if a change has been made on a list within a contract? must I do a call every time period?
The text was updated successfully, but these errors were encountered:
MOVED TO A WORKING GROUP HERE https://discord.gg/yabbPU64gA
python
python interaction with juno chain (mospy, skip / white whale bots have some good work)
https://github.com/ctrl-Felix/mospy & https://github.com/skip-mev/skipper/blob/main/src/transaction.py
Queries / getting data
https://interchainacademy.cosmos.network/tutorials/6-cosmjs/2-first-steps.html
Misc
How keyring-backend works with CLI (test, os) many have issues with this
How to get all votes from a proposal? (Link cosmoscontracts repo but embed code directly)
How does gas work?
Authz - grant voting example
tokenfactory
I want to make a faucet for my token for people to get, how can I faucet funds?
https://github.com/Reecepbcups/cosmos-faucet/tree/main
internal
relaying
hermes
note
How to enable REST API & Make the RPC public (0.0.0.0 instead of localhost) + sed replace commands
NFTs (CW721)
Example marketplace? I have one from craft, simple example
(These are from BlockCreators, in the future we may decide to upstream to the cosmwasm book repo)
How do you submit an svg for a nft? (Check how CW20 base package does it in cw-plus)
Proxy contract: How can you have a contract call another contract to mint and send an nft?
How can you have an limited mint of nft that lets users buy until it reaches 0
How do I create a nft via an api call in my application?
How do I query all the nfts that an address holds?
how can you query the metadata of an nft that a user has? (get specific NFT information)
how to burn an NFT
how to mint an NFT on some function call of a contract (ex: after a burn, like a 1:1 redeem)
How can you have an unlimited mint of nft that lets users buy forever (mint the same NFT to any user who interacts with it)
how can you display an svg nft by getting it from an address from application?
How do I send an nft to a contract via an api call in my application?
How to save a map to storage? (BTreeMap)
Contracts
The text was updated successfully, but these errors were encountered: