JinGyeong Jeong

Results 67 issues of JinGyeong Jeong

getTransferredAssets() need a transaction hash, but it's not possible if signatures are unknown.

bug

Proposal needed. Any suggestions are welcome

enhancement
discussion

Proposal: ``` const sdk = new SDK({ server: "ws://..." }); await sdk.rpc.node.ping(); // rejects with Error("Not connected"); await sdk.rpc.connect(); // open await sdk.rpc.node.ping(); // pong await sdk.rpc.disconnect(); // close ```...

enhancement
discussion

Currently, `getBalance` and `getNonce` are able to resolve `null` when no such block exists. (the given blockNumber is too big) For TypeScript users, they should put the type guard for...

discussion
rpc

`src/rpc/index.ts` Current ``` public sendRpcRequest = (name: string, params: any[]): Promise ``` Patch ``` public sendRpcRequest = (name: string, params: any[], options?: { timeout?: number }): Promise ```

good first issue
rpc

Currently, the below example doesn't work ``` let sdk = new SDK(...); let { getBlock, ... } = sdk.rpc.chain; getBlock("0x123..").then(...) ``` Because of the function context. Changing all the functions...

enhancement
good first issue

- [ ] Core - [x] index.ts - [ ] Asset/AssetScheme/Block/Invoice/Parcel/ ... - [x] Key - Rpc - [x] NodeRpc - [x] ChainRpc - [x] NetworkRpc - [x] AccountRpc -...

enhancement

``` type BlockId = H256 | string | number ```

good first issue