2020-10-19 06:19:16 +03:00
"use strict" ;
var _ _extends = ( this && this . _ _extends ) || ( function ( ) {
var extendStatics = function ( d , b ) {
extendStatics = Object . setPrototypeOf ||
( { _ _proto _ _ : [ ] } instanceof Array && function ( d , b ) { d . _ _proto _ _ = b ; } ) ||
2021-03-08 02:24:04 +03:00
function ( d , b ) { for ( var p in b ) if ( Object . prototype . hasOwnProperty . call ( b , p ) ) d [ p ] = b [ p ] ; } ;
2020-10-19 06:19:16 +03:00
return extendStatics ( d , b ) ;
} ;
return function ( d , b ) {
2021-03-08 02:24:04 +03:00
if ( typeof b !== "function" && b !== null )
throw new TypeError ( "Class extends value " + String ( b ) + " is not a constructor or null" ) ;
2020-10-19 06:19:16 +03:00
extendStatics ( d , b ) ;
function _ _ ( ) { this . constructor = d ; }
d . prototype = b === null ? Object . create ( b ) : ( _ _ . prototype = b . prototype , new _ _ ( ) ) ;
} ;
} ) ( ) ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
2021-03-08 02:24:04 +03:00
exports . PocketProvider = void 0 ;
2021-02-03 01:32:11 +03:00
var properties _1 = require ( "@ethersproject/properties" ) ;
2020-10-19 06:19:16 +03:00
var logger _1 = require ( "@ethersproject/logger" ) ;
var _version _1 = require ( "./_version" ) ;
var logger = new logger _1 . Logger ( _version _1 . version ) ;
var url _json _rpc _provider _1 = require ( "./url-json-rpc-provider" ) ;
2021-10-16 09:29:27 +03:00
// These are load-balancer-based application IDs
2021-02-03 01:32:11 +03:00
var defaultApplicationIds = {
homestead : "6004bcd10040261633ade990" ,
ropsten : "6004bd4d0040261633ade991" ,
rinkeby : "6004bda20040261633ade994" ,
goerli : "6004bd860040261633ade992" ,
} ;
2020-10-19 06:19:16 +03:00
var PocketProvider = /** @class */ ( function ( _super ) {
_ _extends ( PocketProvider , _super ) ;
2021-02-03 01:32:11 +03:00
function PocketProvider ( network , apiKey ) {
// We need a bit of creativity in the constructor because
// Pocket uses different default API keys based on the network
var _newTarget = this . constructor ;
var _this = this ;
if ( apiKey == null ) {
2021-10-16 09:29:27 +03:00
var n = ( 0 , properties _1 . getStatic ) ( _newTarget , "getNetwork" ) ( network ) ;
2021-02-03 01:32:11 +03:00
if ( n ) {
var applicationId = defaultApplicationIds [ n . name ] ;
if ( applicationId ) {
apiKey = {
applicationId : applicationId ,
loadBalancer : true
} ;
}
}
// If there was any issue above, we don't know this network
if ( apiKey == null ) {
logger . throwError ( "unsupported network" , logger _1 . Logger . errors . INVALID _ARGUMENT , {
argument : "network" ,
value : network
} ) ;
}
}
_this = _super . call ( this , network , apiKey ) || this ;
return _this ;
2020-10-19 06:19:16 +03:00
}
PocketProvider . getApiKey = function ( apiKey ) {
2021-02-03 01:32:11 +03:00
// Most API Providers allow null to get the default configuration, but
// Pocket requires the network to decide the default provider, so we
// rely on hijacking the constructor to add a sensible default for us
if ( apiKey == null ) {
logger . throwArgumentError ( "PocketProvider.getApiKey does not support null apiKey" , "apiKey" , apiKey ) ;
}
2020-10-19 06:19:16 +03:00
var apiKeyObj = {
2021-02-03 01:32:11 +03:00
applicationId : null ,
loadBalancer : false ,
2020-10-19 06:19:16 +03:00
applicationSecretKey : null
} ;
// Parse applicationId and applicationSecretKey
if ( typeof ( apiKey ) === "string" ) {
apiKeyObj . applicationId = apiKey ;
}
else if ( apiKey . applicationSecretKey != null ) {
logger . assertArgument ( ( typeof ( apiKey . applicationId ) === "string" ) , "applicationSecretKey requires an applicationId" , "applicationId" , apiKey . applicationId ) ;
logger . assertArgument ( ( typeof ( apiKey . applicationSecretKey ) === "string" ) , "invalid applicationSecretKey" , "applicationSecretKey" , "[REDACTED]" ) ;
apiKeyObj . applicationId = apiKey . applicationId ;
apiKeyObj . applicationSecretKey = apiKey . applicationSecretKey ;
2021-02-03 01:32:11 +03:00
apiKeyObj . loadBalancer = ! ! apiKey . loadBalancer ;
2020-10-19 06:19:16 +03:00
}
else if ( apiKey . applicationId ) {
2021-02-03 01:32:11 +03:00
logger . assertArgument ( ( typeof ( apiKey . applicationId ) === "string" ) , "apiKey.applicationId must be a string" , "apiKey.applicationId" , apiKey . applicationId ) ;
2020-10-19 06:19:16 +03:00
apiKeyObj . applicationId = apiKey . applicationId ;
2021-02-03 01:32:11 +03:00
apiKeyObj . loadBalancer = ! ! apiKey . loadBalancer ;
}
else {
logger . throwArgumentError ( "unsupported PocketProvider apiKey" , "apiKey" , apiKey ) ;
2020-10-19 06:19:16 +03:00
}
return apiKeyObj ;
} ;
PocketProvider . getUrl = function ( network , apiKey ) {
var host = null ;
switch ( network ? network . name : "unknown" ) {
case "homestead" :
host = "eth-mainnet.gateway.pokt.network" ;
break ;
2021-02-03 01:32:11 +03:00
case "ropsten" :
host = "eth-ropsten.gateway.pokt.network" ;
break ;
case "rinkeby" :
host = "eth-rinkeby.gateway.pokt.network" ;
break ;
case "goerli" :
host = "eth-goerli.gateway.pokt.network" ;
break ;
2020-10-19 06:19:16 +03:00
default :
logger . throwError ( "unsupported network" , logger _1 . Logger . errors . INVALID _ARGUMENT , {
argument : "network" ,
value : network
} ) ;
}
2021-02-03 01:32:11 +03:00
var url = null ;
if ( apiKey . loadBalancer ) {
url = "https://" + host + "/v1/lb/" + apiKey . applicationId ;
}
else {
url = "https://" + host + "/v1/" + apiKey . applicationId ;
}
var connection = { url : url } ;
2020-10-19 06:19:16 +03:00
// Initialize empty headers
connection . headers = { } ;
// Apply application secret key
if ( apiKey . applicationSecretKey != null ) {
connection . user = "" ;
connection . password = apiKey . applicationSecretKey ;
}
return connection ;
} ;
PocketProvider . prototype . isCommunityResource = function ( ) {
2021-02-03 01:32:11 +03:00
return ( this . applicationId === defaultApplicationIds [ this . network . name ] ) ;
2020-10-19 06:19:16 +03:00
} ;
return PocketProvider ;
} ( url _json _rpc _provider _1 . UrlJsonRpcProvider ) ) ;
exports . PocketProvider = PocketProvider ;
//# sourceMappingURL=pocket-provider.js.map