Giter VIP home page Giter VIP logo

cw-query's Introduction

cw-query

This is a work in progress basic wrapper for cw-storage-plus maps. If your have any proposed improvements or have made a fix yourself, please write an Issue or PR for it.

Implementing a Page

Let's assume we have a map storage that maps user's addresses to their token amounts in a CW20

pub const BALANCE: Map<'static, Addr, u128> = Map::new("balances");

Now all we need is a query function with this package as the argument and return statement

// Return 20 items max, if the received query asks for more, it will get overrided to the limit
pub fn query_balance(deps: &Deps, page: Page<20, Addr>) -> Result<NextPage<u128, Addr>, Error> {
    page.into_pagination(deps.storage, &BALANCE, |key, value| { value })
}

Implementing a Prefixed Page

This type of page allows you to query maps with a given prefix

Expanding on the previous example, here we have addresses with a timestamp of when they spend their tokens

pub const SPEND_HISTORY: Map<'static, (Addr, u64), u128> = Map::new("spend_history");

Now lets define two functions, one that queries all histories and the other queries a user's history

pub fn query_all_history(deps: &Deps, page: Page<40, (Addr, u64)>) -> Result<NextPage<u128, (Addr, u64)>, Error> {
    page.into_pagination(deps.storage, &SPEND_HISTORY, |key, value| { value })
}

pub fn query_user_history(deps: &Deps, page: PrefixPage<40, (Addr, u64), Addr, u64>) -> Result<NextPage<u128, Addr>, Error> {
    page.into_pagination(deps.storage, &SPEND_HISTORY, |key, value| { value })
}

cw-query's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.