Open marcuspuchalla opened 1 year ago
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
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.