Dan Lynch

Results 105 issues of Dan Lynch

The default should be easy, so a junior dev can simple provide an URL and get up and running. However, an array of fallback endpoints could be provided if exists!...

currently there is a babel.ts inside of ast, should be moved to babel package

inspired by secret, a nice API for query and tx: https://github.com/scrtlabs/secret.js/tree/49bb8a43d061ee7c366e495fc074f8586f7b7a34#secretjsqueryauthaccount queries: ``` secretjs.query.bank.allBalances() secretjs.query.bank.totalSupply() secretjs.query.bank.supplyOf() ``` tx: ``` secretjs.tx.authz.exec() secretjs.tx.authz.exec.simulate() secretjs.tx.authz.grant() secretjs.tx.authz.grant.simulate() ```

The library is not well maintained. It should not be too hard to implement a `Reader/Writer` in modern TS ourselves and ship that as part of the generated code.

Here is the latest export for `ExecuteMsg` (in Typescript) ```js export type ExecuteMsg = { mint: { [k: string]: unknown; }; } | { set_whitelist: { whitelist: string; [k: string]:...