@automata-network/2fa-guru-sdk
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "@automata-network/2fa-guru-sdk", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"main": "./src/index.ts", | ||
@@ -5,0 +5,0 @@ "description": "A SDK for easy integration with 2FA Guru", |
@@ -34,3 +34,4 @@ import { JsonRpcProvider } from '@ethersproject/providers'; | ||
_authenticatorContract: string, | ||
_tokenContract: string | ||
_tokenContract: string, | ||
_apiServer: string | ||
) { | ||
@@ -40,3 +41,3 @@ this.provider = _provider; | ||
this.tokenContract = _tokenContract; | ||
this.apiServer = 'https://2fa-geode-staging.ata.network'; | ||
this.apiServer = _apiServer; | ||
this.createSecretMethod = '/v0/2fa_create_secret'; | ||
@@ -43,0 +44,0 @@ this.is2faCreatedMethod = '/v0/is_2fa_created'; |
921
28955