oysterpack

Results 9 issues of oysterpack

**Describe the bug** Tabbing to change focus stops working after form errors are triggered **General Feedback** In general, the form works fine for valid input. However, it's too easy to...

bug

The [StorageManager][2] trait is not fully compliant with the proposed [standard interface][1]. - `amount` arg on `storage_withdraw` function should be optional: ```rust fn storage_withdraw(&mut self, amount: Option) -> AccountStorageBalance; ```...

- https://redis.io/topics/acl ## ACL Commands - ACL LOAD - ACL SAVE - ACL LIST - ACL USERS - ACL SETUSER - ACL DELUSER - ACL CAT - ACL GENPASS -...

enhancement

I am running into version rxdart version conflicts because of other packages. Please upgrade to latest and greatest rxdart version to resolve the issue.

### wallet.Wallet.delete_key() always return True Per the docs, `Wallet.delete_key()`, should return True if the account has been deleted. Thus, if the wallet does not contain the account, then False is...

bug
good first issue

### algosdk.kmd.sign_transaction() fails when `signing_address` arg is specified ### Expected behaviour Transaction should be signed using the private key corresponding to the specified `signing_address` ### Actual behaviour Exception is raised:...

bug
Team Lamprey

``` ERROR TS2339: Property 'setSigner_account_id' does not exist on type '~lib/near-sdk-core/contract/Context'. Context.setSigner_account_id(alice); ~~~~~~~~~~~~~~~~~~~~ in assembly/__tests__/token.spec.ts(20,15) ERROR TS2339: Property 'setAccount_balance' does not exist on type '~lib/near-sdk-core/contract/Context'. Context.setAccount_balance(u128.fromString("1000000")); ~~~~~~~~~~~~~~~~~~ in assembly/__tests__/token.spec.ts(21,15) [Error]...

```c# public KeyPair(byte[] privateKey) { if (privateKey.Length != SK_SIZE) throw new ArgumentException("Incorrect private key length"); ClearTextPrivateKey= privateKey; ed25519PrivateKey = new Ed25519PrivateKeyParameters(ClearTextPrivateKey, 0); ed25519PublicKey = ed25519PrivateKey.GeneratePublicKey(); Pair = new AsymmetricCipherKeyPair(ed25519PrivateKey, ed25519PublicKey);...

Another useful data structure to support for application and account local state is bitset. Below is a proposed design for the `BitSetState` interface, along with implementations for application and account...