Skip to content
New issue

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

v1.2.0 #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Changelog

### v1.2.0 - 2023-05-17 (for Eternl 1.11.x ->)

#### Added

- supportedExtensions: Returns by Eternl supported extensions.

#### Changed

- enabled(): Now take additional Extension array according to latest CIP30 specification.

### v1.1.1 - 2022-05-07

#### Fixed
Expand Down
5 changes: 3 additions & 2 deletions src/bridge/cardano-dapp-connector-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,10 @@ function initCardanoDAppConnectorBridge(onBridgeCreated) {
isBridge: true,

// https://github.com/cardano-foundation/CIPs/tree/master/CIP-0030
isEnabled: function() { return createRequest('isEnabled') },
enable: function() { return createRequest('enable') },
isEnabled: function() { return createRequest('isEnabled', ...arguments) },
Copy link

@Ryun1 Ryun1 Apr 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This call does not take arguments
see here

enable: function() { return createRequest('enable', ...arguments) },

supportedExtensions: initialApi.supportedExtensions,
apiVersion: initialApi.apiVersion,
name: initialApi.name,
icon: initialApi.icon ? initialApi.icon : null,
Expand Down
2 changes: 1 addition & 1 deletion src/bridge/cardano-dapp-connector-bridge.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.