The following is a recreation of the iconex connect sample bootstrapped with Create React App.
The project can be run using the standard scripts of any project created with 'Create React App':
-
npm start -
npm test -
npm run build -
npm run eject
You can learn more in the Create React App documentation.
(NOTE: the following is a simple description taken verbatim from "iconex connect sample" original repo)
A protocol defined for ICONex to message with external web page.
This document describes a way for external web page to request and response for about icon account such as getting icx address, authority for transaction and signature.
This protocol allows third-party developer to use ICON network through ICONex
You need to implement two part of dispatching event to ICONex and listening event from ICONex using CustomEvent. The type and payload of events is assigned to detail field in CustomEvent.
Data in detail field:
| Field | Type | Description |
|---|---|---|
| type | string | Pre-defined type of events |
| payload | any | Data required for the request or response. |
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: '...',
payload: {...}
}
});
window.dispatchEvent(customEvent);const eventHandler = event => {
const { type, payload } = event.detail;
switch (type) { ... }
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);HAS_ACCOUNT
REQUEST_HAS_ACCOUNT Requests for whether iconex has any icon wallet.
RESPONSE_HAS_ACCOUNT Returns boolean-typed result.
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: 'REQUEST_HAS_ACCOUNT'
}
});
window.dispatchEvent(customEvent);
const eventHandler = event => {
const { type, payload } = event.detail;
if (type === 'RESPONSE_HAS_ACCOUNT') {
console.log(payload.hasAccount); // true or false
}
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);HAS_ADDRESS
REQUEST_HAS_ADDRESS Requests for whether iconex has the icon wallet with specific address.
RESPONSE_HAS_ADDRESS Returns boolean-typed result.
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: 'REQUEST_HAS_ADDRESS',
payload: 'hx19870922...'
}
});
window.dispatchEvent(customEvent);
const eventHandler = event => {
const { type, payload } = detail
if (type === 'RESPONSE_HAS_ADDRESS') {
console.log(payload); // true or false
}
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);ADDRESS
REQUEST_ADDRESS Requests for the address to use for service.
RESPONSE_ADDRESS Returns the icx address selected by user.
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: 'REQUEST_ADDRESS'
}
});
window.dispatchEvent(customEvent);
const eventHandler = event => {
const { type, payload } = detail;
if (type === 'RESPONSE_ADDRESS') {
console.log(payload); // e.g., hx19870922...
}
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);JSON-RPC
REQUEST_JSON-RPC Requests for calling standard ICON JSON-RPC API. (User confirmation is required in some cases.)
RESPONSE_JSON-RPC Returns the JSON-RPC response.
CANCEL_JSON-RPC User cancelled the JSON-RPC request.
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: 'REQUEST_JSON-RPC',
payload: {
jsonrpc: "2.0",
method: "icx_method",
id: 6339,
params: {
from: "hx19870922...",
...
}
}
}
});
window.dispatchEvent(customEvent);
const eventHandler = event => {
const { type, payload } = detail;
if (type === 'RESPONSE_JSON-RPC') {
console.log(payload); // e.g., {"jsonrpc": "2.0", "id": 6339, "result": { ... }}
}
else if (type === 'CANCEL_JSON-RPC') {
console.error('User cancelled JSON-RPC request')
}
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);SIGNING
REQUEST_SIGNING Request for only signing tx hash. (User confirmation is always required.)
RESPONSE_SIGNING Returns signature.
CANCEL_SIGNING User cancelled the signing request.
const customEvent = new CustomEvent('ICONEX_RELAY_REQUEST', {
detail: {
type: 'REQUEST_SIGNING',
payload: {
from: 'hx19870922...',
hash: '0x13979...'
}
}
});
window.dispatchEvent(customEvent);
const eventHandler = event => {
const { type, payload } = detail
if (type === 'RESPONSE_SIGNING') {
console.log(payload) // e.g., 'q/dVc3qj4En0GN+...'
}
else if (type === 'CANCEL_SIGNING') {
console.error('User cancelled signing request')
}
}
window.addEventListener('ICONEX_RELAY_RESPONSE', eventHandler);