solana/web3.js/src/connection.js

375 lines
9.6 KiB
JavaScript
Raw Normal View History

2018-08-23 10:52:48 -07:00
// @flow
import assert from 'assert';
import fetch from 'node-fetch';
import jayson from 'jayson/lib/client/browser';
import {struct} from 'superstruct';
2018-09-14 08:27:40 -07:00
import {Transaction} from './transaction';
2018-09-30 18:42:45 -07:00
import {PublicKey} from './publickey';
import {sleep} from './util/sleep';
2018-09-30 18:42:45 -07:00
import type {Account} from './account';
import type {TransactionSignature, TransactionId} from './transaction';
2018-08-23 10:52:48 -07:00
type RpcRequest = (methodName: string, args: Array<any>) => any;
2018-08-23 10:52:48 -07:00
function createRpcRequest(url): RpcRequest {
const server = jayson(
async (request, callback) => {
const options = {
method: 'POST',
body: request,
headers: {
'Content-Type': 'application/json',
}
};
try {
const res = await fetch(url, options);
const text = await res.text();
callback(null, text);
} catch (err) {
callback(err);
}
}
);
return (method, args) => {
return new Promise((resolve, reject) => {
server.request(method, args, (err, response) => {
if (err) {
reject(err);
return;
}
resolve(response);
});
});
};
}
2018-08-24 10:39:51 -07:00
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "getBalance" message
*/
2018-08-23 10:52:48 -07:00
const GetBalanceRpcResult = struct({
jsonrpc: struct.literal('2.0'),
id: 'string',
error: 'any?',
result: 'number?',
});
2018-09-20 15:08:52 -07:00
2018-09-26 19:54:59 -07:00
/**
* @private
*/
function jsonRpcResult(resultDescription: any) {
const jsonRpcVersion = struct.literal('2.0');
return struct.union([
struct({
jsonrpc: jsonRpcVersion,
id: 'string',
error: 'any'
}),
struct({
jsonrpc: jsonRpcVersion,
id: 'string',
error: 'null?',
result: resultDescription,
}),
]);
}
2018-09-20 15:08:52 -07:00
/**
* Expected JSON RPC response for the "getAccountInfo" message
*/
2018-09-26 19:54:59 -07:00
const GetAccountInfoRpcResult = jsonRpcResult({
executable: 'boolean',
loader_program_id: 'array',
2018-09-26 19:54:59 -07:00
program_id: 'array',
tokens: 'number',
userdata: 'array',
2018-09-20 15:08:52 -07:00
});
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "confirmTransaction" message
*/
2018-09-26 19:54:59 -07:00
const ConfirmTransactionRpcResult = jsonRpcResult('boolean');
2018-08-23 10:52:48 -07:00
2018-09-26 19:16:17 -07:00
/**
* Expected JSON RPC response for the "getSignatureStatus" message
*/
2018-09-26 19:54:59 -07:00
const GetSignatureStatusRpcResult = jsonRpcResult(struct.enum([
'AccountInUse',
2018-09-26 19:54:59 -07:00
'Confirmed',
'GenericFailure',
'ProgramRuntimeError',
'SignatureNotFound',
2018-09-26 19:54:59 -07:00
]));
2018-09-26 19:16:17 -07:00
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "getTransactionCount" message
*/
2018-09-26 19:54:59 -07:00
const GetTransactionCountRpcResult = jsonRpcResult('number');
2018-08-23 10:52:48 -07:00
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "getLastId" message
*/
2018-09-26 19:54:59 -07:00
const GetLastId = jsonRpcResult('string');
2018-08-23 10:52:48 -07:00
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "getFinality" message
*/
2018-09-26 19:54:59 -07:00
const GetFinalityRpcResult = jsonRpcResult('number');
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "requestAirdrop" message
*/
2018-09-26 19:54:59 -07:00
const RequestAirdropRpcResult = jsonRpcResult('string');
2018-08-24 09:05:23 -07:00
/**
* Expected JSON RPC response for the "sendTransaction" message
*/
2018-09-26 19:54:59 -07:00
const SendTokensRpcResult = jsonRpcResult('string');
2018-08-23 10:52:48 -07:00
2018-09-20 15:08:52 -07:00
/**
* Information describing an account
2018-09-20 15:35:41 -07:00
*
* @typedef {Object} AccountInfo
* @property {number} tokens Number of tokens assigned to the account
* @property {PublicKey} programId Identifier of the program assigned to the account
* @property {?Buffer} userdata Optional userdata assigned to the account
2018-09-20 15:08:52 -07:00
*/
type AccountInfo = {
executable: boolean;
2018-09-20 15:08:52 -07:00
programId: PublicKey,
tokens: number,
userdata: Buffer,
2018-09-20 15:08:52 -07:00
}
2018-09-26 19:16:17 -07:00
/**
* Possible signature status values
*
* @typedef {string} SignatureStatus
*/
export type SignatureStatus = 'Confirmed'
| 'AccountInUse'
| 'SignatureNotFound'
| 'ProgramRuntimeError'
| 'GenericFailure';
2018-09-26 19:16:17 -07:00
2018-08-24 09:05:23 -07:00
/**
* A connection to a fullnode JSON RPC endpoint
*/
2018-08-23 10:52:48 -07:00
export class Connection {
_rpcRequest: RpcRequest;
2018-10-22 20:03:44 -07:00
_lastIdInfo: {
lastId: TransactionId | null,
seconds: number,
transactionSignatures: Array<string>,
};
_disableLastIdCaching: boolean = false
2018-08-23 10:52:48 -07:00
2018-08-24 09:05:23 -07:00
/**
* Establish a JSON RPC connection
*
* @param endpoint URL to the fullnode JSON RPC endpoint
*/
2018-08-23 10:52:48 -07:00
constructor(endpoint: string) {
2018-08-23 19:47:00 -07:00
if (typeof endpoint !== 'string') {
throw new Error('Connection endpoint not specified');
}
2018-08-23 10:52:48 -07:00
this._rpcRequest = createRpcRequest(endpoint);
2018-10-22 20:03:44 -07:00
this._lastIdInfo = {
lastId: null,
seconds: -1,
transactionSignatures: [],
};
2018-08-23 10:52:48 -07:00
}
2018-08-24 09:05:23 -07:00
/**
* Fetch the balance for the specified public key
*/
async getBalance(publicKey: PublicKey): Promise<number> {
2018-08-23 10:52:48 -07:00
const unsafeRes = await this._rpcRequest(
'getBalance',
2018-09-30 18:42:45 -07:00
[publicKey.toBase58()]
2018-08-23 10:52:48 -07:00
);
const res = GetBalanceRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return res.result;
}
2018-09-20 15:08:52 -07:00
/**
* Fetch all the account info for the specified public key
*/
async getAccountInfo(publicKey: PublicKey): Promise<AccountInfo> {
const unsafeRes = await this._rpcRequest(
'getAccountInfo',
2018-09-30 18:42:45 -07:00
[publicKey.toBase58()]
2018-09-20 15:08:52 -07:00
);
const res = GetAccountInfoRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
const {result} = res;
assert(typeof result !== 'undefined');
return {
executable: result.executable,
2018-09-20 15:08:52 -07:00
tokens: result.tokens,
2018-09-30 18:42:45 -07:00
programId: new PublicKey(result.program_id),
loaderProgramId: new PublicKey(result.loader_program_id),
userdata: Buffer.from(result.userdata),
2018-09-20 15:08:52 -07:00
};
}
2018-08-24 09:05:23 -07:00
/**
* Confirm the transaction identified by the specified signature
*/
2018-08-23 10:52:48 -07:00
async confirmTransaction(signature: TransactionSignature): Promise<boolean> {
const unsafeRes = await this._rpcRequest(
'confirmTransaction',
[signature]
);
const res = ConfirmTransactionRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return res.result;
}
2018-09-26 19:16:17 -07:00
/**
* Fetch the current transaction count of the network
*/
async getSignatureStatus(signature: TransactionSignature): Promise<SignatureStatus> {
const unsafeRes = await this._rpcRequest('getSignatureStatus', [signature]);
const res = GetSignatureStatusRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return res.result;
}
2018-08-24 09:05:23 -07:00
/**
* Fetch the current transaction count of the network
*/
2018-08-23 10:52:48 -07:00
async getTransactionCount(): Promise<number> {
const unsafeRes = await this._rpcRequest('getTransactionCount', []);
const res = GetTransactionCountRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return Number(res.result);
}
2018-08-24 09:05:23 -07:00
/**
* Fetch the identifier to the latest transaction on the network
*/
2018-08-23 10:52:48 -07:00
async getLastId(): Promise<TransactionId> {
const unsafeRes = await this._rpcRequest('getLastId', []);
const res = GetLastId(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return res.result;
}
2018-08-24 09:05:23 -07:00
/**
* Return the current network finality time in millliseconds
*/
2018-08-23 10:52:48 -07:00
async getFinality(): Promise<number> {
const unsafeRes = await this._rpcRequest('getFinality', []);
const res = GetFinalityRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
return Number(res.result);
}
2018-08-24 09:05:23 -07:00
/**
* Request an allocation of tokens to the specified account
*/
2018-09-12 17:41:20 -07:00
async requestAirdrop(to: PublicKey, amount: number): Promise<TransactionSignature> {
2018-09-30 18:42:45 -07:00
const unsafeRes = await this._rpcRequest('requestAirdrop', [to.toBase58(), amount]);
2018-08-23 16:39:52 -07:00
const res = RequestAirdropRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
2018-09-12 17:41:20 -07:00
return res.result;
2018-08-23 10:52:48 -07:00
}
2018-08-24 09:05:23 -07:00
/**
2018-09-14 08:27:40 -07:00
* Sign and send a transaction
2018-08-24 09:05:23 -07:00
*/
2018-09-14 08:27:40 -07:00
async sendTransaction(from: Account, transaction: Transaction): Promise<TransactionSignature> {
for (;;) {
2018-10-22 20:03:44 -07:00
// Attempt to use the previous last id for up to 1 second
const seconds = (new Date()).getSeconds();
if ( (this._lastIdInfo.lastId != null) &&
(this._lastIdInfo.seconds === seconds) ) {
transaction.lastId = this._lastIdInfo.lastId;
transaction.sign(from);
if (!transaction.signature) {
throw new Error('!signature'); // should never happen
}
// If the signature of this transaction has not been seen before with the
// current lastId, all done.
const signature = transaction.signature.toString();
if (!this._lastIdInfo.transactionSignatures.includes(signature)) {
this._lastIdInfo.transactionSignatures.push(signature);
if (this._disableLastIdCaching) {
this._lastIdInfo.seconds = -1;
}
break;
}
}
2018-10-22 20:03:44 -07:00
// Fetch a new last id
let attempts = 0;
for (;;) {
const lastId = await this.getLastId();
if (this._lastIdInfo.lastId != lastId) {
this._lastIdInfo = {
lastId,
seconds: (new Date()).getSeconds(),
transactionSignatures: [],
};
break;
}
if (attempts === 8) {
throw new Error('Unable to obtain new last id');
}
await sleep(250);
++attempts;
}
}
const wireTransaction = transaction.serialize();
const unsafeRes = await this._rpcRequest('sendTransaction', [[...wireTransaction]]);
const res = SendTokensRpcResult(unsafeRes);
if (res.error) {
throw new Error(res.error.message);
}
assert(typeof res.result !== 'undefined');
assert(res.result);
return res.result;
2018-08-23 10:52:48 -07:00
}
}