Skip to content

Commit

Permalink
v10.1.2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
10xSebastian committed Oct 20, 2022
1 parent 0eb4127 commit 0f0bc41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/esm/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -15211,7 +15211,7 @@ const setProviderEndpoints$1 = async (blockchain, endpoints)=> {
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down
4 changes: 2 additions & 2 deletions dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15212,7 +15212,7 @@ const setProviderEndpoints$2 = async (blockchain, endpoints)=> {
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down Expand Up @@ -15476,7 +15476,7 @@ const setProviderEndpoints$1 = async (blockchain, endpoints)=> {
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down
2 changes: 1 addition & 1 deletion dist/umd/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -15214,7 +15214,7 @@
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down
4 changes: 2 additions & 2 deletions dist/umd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15214,7 +15214,7 @@
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down Expand Up @@ -15478,7 +15478,7 @@
let endpoint;
let window = getWindow();

if(window.fetch == undefined || (process && process.env && "production" == 'test')) {
if(window.fetch == undefined || (process && process['env'] && process['env']['NODE_ENV'] == 'test')) {
endpoint = endpoints[0];
} else {

Expand Down

0 comments on commit 0f0bc41

Please sign in to comment.