-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import plugins and dependance for wallet connexion
- Loading branch information
Showing
20 changed files
with
4,377 additions
and
623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const networks = { | ||
wax: { | ||
name: 'wax', | ||
desc: 'WAX Mainnet', | ||
|
||
chainId: '1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4', | ||
host: 'wax.greymass.com', | ||
port: 443, | ||
protocol: 'https', | ||
client_nodes: { | ||
'https://wax.greymass.com': 'Greymass - Canada', | ||
'https://wax.eu.eosamsterdam.net': 'EOSAmsterdam - Amsterdam', | ||
'https://wax.eosn.io': 'EOS Nation - Canada', | ||
'https://wax.pink.gg': 'Pink GG - Germany', | ||
}, | ||
}, | ||
|
||
} | ||
|
||
module.exports = { | ||
networks, | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,314 @@ | ||
import { AbiProvider, AuthorityProvider, AuthorityProviderArgs, BinaryAbi } from './eosjs-api-interfaces'; | ||
import { base64ToBinary, convertLegacyPublicKeys } from 'eosjs/dist/eosjs-numeric'; | ||
import { GetAbiResult, GetBlockResult, GetCodeResult, GetInfoResult, GetRawCodeAndAbiResult, PushTransactionArgs, GetBlockHeaderStateResult, GetActivatedProtocolFeaturesResult, GetRawAbiResult } from "./eosjs-rpc-interfaces" // tslint:disable-line | ||
import { RpcError } from 'eosjs/dist/eosjs-rpcerror'; | ||
|
||
function arrayToHex(data) { | ||
let result = ''; | ||
for (const x of data) { | ||
result += ('00' + x.toString(16)).slice(-2); | ||
} | ||
return result; | ||
} | ||
|
||
/** Make RPC calls */ | ||
export class JsonRpc implements AuthorityProvider, AbiProvider { | ||
public endpoints: string[]; | ||
public fetchBuiltin: (input?: Request | string, init?: RequestInit) => Promise<Response>; | ||
public maxRetries: number = 3; | ||
public currentEndpoint: string; | ||
|
||
/** | ||
* @param args | ||
* * `fetch`: | ||
* * browsers: leave `null` or `undefined` | ||
* * node: provide an implementation | ||
*/ | ||
constructor( | ||
endpoints: string | string[], | ||
args: { | ||
fetch?: (input?: string | Request, init?: RequestInit) => Promise<Response> | ||
} = {} | ||
) { | ||
endpoints = Array.isArray(endpoints) ? endpoints : [endpoints]; | ||
this.endpoints = endpoints.map(endpoint => endpoint.replace(/\/$/, '')) | ||
this.nextEndpoint(); | ||
|
||
if (args.fetch) { | ||
this.fetchBuiltin = args.fetch; | ||
} else { | ||
this.fetchBuiltin = (global as any).fetch.bind(global); | ||
} | ||
} | ||
|
||
fetchWithTimeout (url: string, options: any, timeout = 6000): any { | ||
const f = this.fetchBuiltin; | ||
|
||
return Promise.race([ | ||
f(url, options), | ||
new Promise((_, reject) => | ||
setTimeout(() => reject(new Error('timeout')), timeout) | ||
) | ||
]); | ||
} | ||
|
||
public nextEndpoint() { | ||
if (this.endpoints.length) { | ||
if (this.currentEndpoint) { | ||
const removed = this.endpoints.shift(); | ||
this.endpoints = this.endpoints.concat(removed || []); | ||
} | ||
|
||
this.currentEndpoint = this.endpoints[0]; | ||
console.log('Switched to API:', this.currentEndpoint); | ||
} | ||
} | ||
|
||
/** Post `body` to `endpoint + path`. Throws detailed error information in `RpcError` when available. */ | ||
public async fetch(path: string, body: any, currentRetries: number = 0): Promise<any> { | ||
let response; | ||
let json; | ||
try { | ||
response = await this.fetchWithTimeout(this.currentEndpoint + path, { | ||
body: JSON.stringify(body), | ||
method: 'POST', | ||
}); | ||
json = await response.json(); | ||
if (json.processed && json.processed.except) { | ||
throw new RpcError(json); | ||
} | ||
} catch (e) { | ||
console.log('Error from', this.currentEndpoint, e) | ||
|
||
e.isFetchError = true; | ||
|
||
if (this.endpoints.length > 1) { | ||
this.nextEndpoint() | ||
if (currentRetries < this.maxRetries) { | ||
console.log('Retrying at try:' , currentRetries) | ||
return this.fetch(path, body, ++currentRetries) | ||
} else { | ||
throw e; | ||
} | ||
} | ||
} | ||
if (!(response && response.ok)) { | ||
throw new RpcError(json); | ||
} | ||
|
||
// Check for synced | ||
if (json && json.head_block_time) { | ||
const headTime = new Date(json.head_block_time + 'Z').getTime() | ||
const ct = new Date().getTime() | ||
const secondsBehind = (ct - headTime) / 1000 | ||
|
||
if (secondsBehind > 20 && this.endpoints.length > 1) { | ||
console.log('API is SYNCING (behind)', this.currentEndpoint) | ||
console.log(`Current Time: ${ct}, Head Time: ${headTime}, Seconds Behind: ${secondsBehind}`) | ||
|
||
this.nextEndpoint() | ||
if (currentRetries < this.maxRetries) { | ||
console.log('Retrying at try:' , currentRetries) | ||
return this.fetch(path, body, ++currentRetries) | ||
} | ||
} | ||
} | ||
|
||
return json; | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_abi` */ | ||
public async get_abi(accountName: string): Promise<GetAbiResult> { | ||
return await this.fetch('/v1/chain/get_abi', { account_name: accountName }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_account` */ | ||
public async get_account(accountName: string): Promise<any> { | ||
return await this.fetch('/v1/chain/get_account', { account_name: accountName }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_block_header_state` */ | ||
public async get_block_header_state(blockNumOrId: number | string): Promise<GetBlockHeaderStateResult> { | ||
return await this.fetch('/v1/chain/get_block_header_state', { block_num_or_id: blockNumOrId }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_block` */ | ||
public async get_block(blockNumOrId: number | string): Promise<GetBlockResult> { | ||
return await this.fetch('/v1/chain/get_block', { block_num_or_id: blockNumOrId }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_code` */ | ||
public async get_code(accountName: string): Promise<GetCodeResult> { | ||
return await this.fetch('/v1/chain/get_code', { | ||
account_name: accountName, | ||
code_as_wasm: true | ||
}); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_currency_balance` */ | ||
public async get_currency_balance(code: string, account: string, symbol: string = null): Promise<any> { | ||
return await this.fetch('/v1/chain/get_currency_balance', { code, account, symbol }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_currency_stats` */ | ||
public async get_currency_stats(code: string, symbol: string): Promise<any> { | ||
return await this.fetch('/v1/chain/get_currency_stats', { code, symbol }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_info` */ | ||
public async get_info(): Promise<GetInfoResult> { | ||
return await this.fetch('/v1/chain/get_info', {}); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_producer_schedule` */ | ||
public async get_producer_schedule(): Promise<any> { | ||
return await this.fetch('/v1/chain/get_producer_schedule', {}); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_producers` */ | ||
public async get_producers(json = true, lowerBound = '', limit = 50): Promise<any> { | ||
return await this.fetch('/v1/chain/get_producers', { json, lower_bound: lowerBound, limit }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_raw_code_and_abi` */ | ||
public async get_raw_code_and_abi(accountName: string): Promise<GetRawCodeAndAbiResult> { | ||
return await this.fetch('/v1/chain/get_raw_code_and_abi', { account_name: accountName }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_raw_abi` */ | ||
public async get_raw_abi(accountName: string): Promise<GetRawAbiResult> { | ||
return await this.fetch('/v1/chain/get_raw_abi', { account_name: accountName }); | ||
} | ||
|
||
/** calls `/v1/chain/get_raw_abi` and pulls out unneeded raw wasm code */ | ||
public async getRawAbi(accountName: string): Promise<BinaryAbi> { | ||
const rawCodeAndAbi = await this.get_raw_abi(accountName); | ||
const abi = base64ToBinary(rawCodeAndAbi.abi); | ||
return { accountName: rawCodeAndAbi.account_name, abi }; | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_scheduled_transactions` */ | ||
public async get_scheduled_transactions(json = true, lowerBound = '', limit = 50): Promise<any> { | ||
return await this.fetch('/v1/chain/get_scheduled_transactions', { json, lower_bound: lowerBound, limit }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_activated_protocol_features` */ | ||
public async get_activated_protocol_features(limit = 100): Promise<GetActivatedProtocolFeaturesResult> { | ||
return await this.fetch('/v1/chain/get_activated_protocol_features', { limit }); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_table_rows` */ | ||
public async get_table_rows({ | ||
json = true, | ||
code, | ||
scope, | ||
table, | ||
table_key = '', | ||
lower_bound = '', | ||
upper_bound = '', | ||
index_position = 1, | ||
key_type = '', | ||
limit = 10, | ||
reverse = false, | ||
show_payer = false, | ||
}: any): Promise<any> { | ||
return await this.fetch( | ||
'/v1/chain/get_table_rows', { | ||
json, | ||
code, | ||
scope, | ||
table, | ||
table_key, | ||
lower_bound, | ||
upper_bound, | ||
index_position, | ||
key_type, | ||
limit, | ||
reverse, | ||
show_payer, | ||
}); | ||
} | ||
|
||
/** Raw call to `/v1/chain/get_table_by_scope` */ | ||
public async get_table_by_scope({ | ||
code, | ||
table, | ||
lower_bound = '', | ||
upper_bound = '', | ||
limit = 10, | ||
}: any): Promise<any> { | ||
return await this.fetch( | ||
'/v1/chain/get_table_by_scope', { | ||
code, | ||
table, | ||
lower_bound, | ||
upper_bound, | ||
limit, | ||
}); | ||
} | ||
|
||
/** Get subset of `availableKeys` needed to meet authorities in `transaction`. Implements `AuthorityProvider` */ | ||
public async getRequiredKeys(args: AuthorityProviderArgs): Promise<string[]> { | ||
const { required_keys } = await this.fetch('/v1/chain/get_required_keys', { | ||
transaction: args.transaction, | ||
available_keys: args.availableKeys | ||
}) | ||
return convertLegacyPublicKeys(required_keys); | ||
} | ||
|
||
/** Push a serialized transaction (replaced by send_transaction, but returned format has changed) */ | ||
public async push_transaction( | ||
{ signatures, serializedTransaction, serializedContextFreeData }: PushTransactionArgs | ||
): Promise<any> { | ||
try { | ||
return await this.fetch('/v1/chain/push_transaction', { | ||
signatures, | ||
compression: 0, | ||
packed_context_free_data: arrayToHex(serializedContextFreeData || new Uint8Array(0)), | ||
packed_trx: arrayToHex(serializedTransaction), | ||
}); | ||
} catch (e) { | ||
const expired = e.json.error.name === 'expired_tx_exception' | ||
if (expired) { | ||
e.json.error.message = 'Transaction Expired: Try Again' | ||
this.nextEndpoint() | ||
} | ||
throw e | ||
} | ||
} | ||
|
||
/** Send a serialized transaction */ | ||
public async send_transaction( | ||
{ signatures, serializedTransaction, serializedContextFreeData }: PushTransactionArgs | ||
): Promise<any> { | ||
return await this.fetch('/v1/chain/send_transaction', { | ||
signatures, | ||
compression: 0, | ||
packed_context_free_data: arrayToHex(serializedContextFreeData || new Uint8Array(0)), | ||
packed_trx: arrayToHex(serializedTransaction), | ||
}); | ||
} | ||
|
||
/** Raw call to `/v1/db_size/get` */ | ||
public async db_size_get() { return await this.fetch('/v1/db_size/get', {}); } | ||
|
||
/** Raw call to `/v1/history/get_actions` */ | ||
public async history_get_actions(accountName: string, pos: number = null, offset: number = null) { | ||
return await this.fetch('/v1/history/get_actions', { account_name: accountName, pos, offset }); | ||
} | ||
|
||
/** Raw call to `/v1/history/get_transaction` */ | ||
public async history_get_transaction(id: string, blockNumHint: number = null) { | ||
return await this.fetch('/v1/history/get_transaction', { id, block_num_hint: blockNumHint }); | ||
} | ||
|
||
/** Raw call to `/v1/history/get_key_accounts` */ | ||
public async history_get_key_accounts(publicKey: string) { | ||
return await this.fetch('/v1/history/get_key_accounts', { public_key: publicKey }); | ||
} | ||
|
||
/** Raw call to `/v1/history/get_controlled_accounts` */ | ||
public async history_get_controlled_accounts(controllingAccount: string) { | ||
return await this.fetch('/v1/history/get_controlled_accounts', { controlling_account: controllingAccount }); | ||
} | ||
} // JsonRpc |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.