We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the new extensions being added, we must keep the API on par with the CIP30 spec.
This means we need to add:
cardano.{walletName}.extensions
cardano.{walletName}.supportedExtensions
api.getExtensions() : Promise<Extension[]>
cardano.{walletName}.enable({ extensions: Extension[] } = {})
In addition, the getUsedAddresses is missing the paginate parameter as defined in the spec.
getUsedAddresses
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the new extensions being added, we must keep the API on par with the CIP30 spec.
This means we need to add:
cardano.{walletName}.extensions
- extensions that the wallet has enabledcardano.{walletName}.supportedExtensions
- extensions the wallet supports and can be usedapi.getExtensions() : Promise<Extension[]>
- Retrieves the list of extensions enabled by the wallet.cardano.{walletName}.enable({ extensions: Extension[] } = {})
- new Extension parameter for enabling a walletIn addition, the
getUsedAddresses
is missing the paginate parameter as defined in the spec.The text was updated successfully, but these errors were encountered: