elrond-sdk-erdjs icon indicating copy to clipboard operation
elrond-sdk-erdjs copied to clipboard

Elrond JS Command Line Tools and SDK for interacting with the Elrond Network (in general) and Smart Contracts (in particular).

Results 22 elrond-sdk-erdjs issues
Sort by recently updated
recently updated
newest added

Hi, I getting error when trying create Abi from json. Looks like it cannot map enum, but it was working fine with another abi json's I'm using @elrondnetwork/erdjs v11.1.0 ```...

A provider that loads a local wallet would be a nice improvement. It would be particularly useful for scripts that deploy smart contracts.

Hi, It seems convertToTypedValue method from NativeSerializer cannot handle enum, the workaround is to not currently use ABI to call endpoints that require enum I'm using erdjs 10.2.4 Thank you

Hello, the EndpointModifiers class does not make the "ownerOnly" information available that the ABI provides. Is there a other way to get this information about an endpoint? Thank you!

Hi, It seems convertToTypedValue method from NativeSerializer cannot handle ManagedByteArray, the workaround is to not currently use ABI to call endpoints that require ManagedByteArray Error: Nested error: convertToTypedValue: unhandled type...

Currently only the extension and ledger providers support signing messages. Will support for signing messages with the Maiar app be added? Without it developing dapps that use a backend authentication...

I'm developing a platform highly dependent on signing a message, so I can authenticate server requests. export interface IDappProvider { .... signMessage(transaction: SignableMessage, options?: { callbackUrl?: string; }): Promise; .......

Hello Team, I work with the Tokens FungibleTokenOfAccountOnNetwork and NonFungibleTokenOfAccountOnNetwork and I notice they are missing a lot of properties from the API. I try to get the Assets from...

Currently this code is allowed: ``` new Address(undefined); ``` But this code doesn't make sense and is bug-prone. I discovered several bugs in my code because I passed `undefined` to...