ggez-banking-sdk 0.1.81 → 0.1.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/clients/account.d.ts +19 -0
- package/dist/api/clients/account.js +31 -0
- package/dist/api/clients/auth.d.ts +32 -0
- package/dist/api/clients/auth.js +55 -0
- package/dist/api/clients/blockchain.d.ts +31 -0
- package/dist/api/clients/blockchain.js +54 -0
- package/dist/api/clients/index.d.ts +10 -0
- package/dist/api/clients/index.js +10 -0
- package/dist/api/clients/ipAddressAndLocation.d.ts +13 -0
- package/dist/api/clients/ipAddressAndLocation.js +24 -0
- package/dist/api/clients/limited.d.ts +55 -0
- package/dist/api/clients/limited.js +94 -0
- package/dist/api/clients/order.d.ts +13 -0
- package/dist/api/clients/order.js +24 -0
- package/dist/api/clients/organization.d.ts +33 -0
- package/dist/api/clients/organization.js +58 -0
- package/dist/api/clients/promotion.d.ts +25 -0
- package/dist/api/clients/promotion.js +42 -0
- package/dist/api/clients/transaction.d.ts +19 -0
- package/dist/api/clients/transaction.js +35 -0
- package/dist/api/clients/user.d.ts +453 -0
- package/dist/api/clients/user.js +748 -0
- package/dist/api/data/auth.d.ts +8 -0
- package/dist/api/data/auth.js +48 -0
- package/dist/api/data/blockchain.d.ts +7 -0
- package/dist/api/data/blockchain.js +37 -0
- package/dist/api/data/index.d.ts +7 -0
- package/dist/api/data/index.js +7 -0
- package/dist/api/data/limited.d.ts +5 -0
- package/dist/api/data/limited.js +30 -0
- package/dist/api/data/order.d.ts +4 -0
- package/dist/api/data/order.js +43 -0
- package/dist/api/data/organization.d.ts +6 -0
- package/dist/api/data/organization.js +83 -0
- package/dist/api/data/transaction.d.ts +5 -0
- package/dist/api/data/transaction.js +35 -0
- package/dist/api/data/user/activity.d.ts +0 -0
- package/dist/api/data/user/activity.js +0 -0
- package/dist/api/data/user/address.d.ts +6 -0
- package/dist/api/data/user/address.js +47 -0
- package/dist/api/data/user/auth.d.ts +5 -0
- package/dist/api/data/user/auth.js +32 -0
- package/dist/api/data/user/bankAccount.d.ts +6 -0
- package/dist/api/data/user/bankAccount.js +65 -0
- package/dist/api/data/user/device.d.ts +9 -0
- package/dist/api/data/user/device.js +79 -0
- package/dist/api/data/user/document.d.ts +4 -0
- package/dist/api/data/user/document.js +30 -0
- package/dist/api/data/user/email.d.ts +11 -0
- package/dist/api/data/user/email.js +92 -0
- package/dist/api/data/user/identification.d.ts +5 -0
- package/dist/api/data/user/identification.js +37 -0
- package/dist/api/data/user/index.d.ts +18 -0
- package/dist/api/data/user/index.js +171 -0
- package/dist/api/data/user/personalInfo.d.ts +3 -0
- package/dist/api/data/user/personalInfo.js +12 -0
- package/dist/api/data/user/phone.d.ts +11 -0
- package/dist/api/data/user/phone.js +95 -0
- package/dist/api/data/user/preferences.d.ts +3 -0
- package/dist/api/data/user/preferences.js +12 -0
- package/dist/api/data/user/security.d.ts +7 -0
- package/dist/api/data/user/security.js +76 -0
- package/dist/api/data/user/ticket.d.ts +3 -0
- package/dist/api/data/user/ticket.js +29 -0
- package/dist/api/index.d.ts +3 -0
- package/dist/api/index.js +3 -0
- package/dist/api/services/account.d.ts +10 -0
- package/dist/api/services/account.js +29 -0
- package/dist/api/services/auth.d.ts +12 -0
- package/dist/api/services/auth.js +20 -0
- package/dist/api/services/base.d.ts +12 -0
- package/dist/api/services/base.js +61 -0
- package/dist/api/services/blockchain.d.ts +12 -0
- package/dist/api/services/blockchain.js +30 -0
- package/dist/api/services/index.d.ts +15 -0
- package/dist/api/services/index.js +15 -0
- package/dist/api/services/ipAddressAndLocation.d.ts +8 -0
- package/dist/api/services/ipAddressAndLocation.js +18 -0
- package/dist/api/services/limited.d.ts +14 -0
- package/dist/api/services/limited.js +43 -0
- package/dist/api/services/order.d.ts +9 -0
- package/dist/api/services/order.js +24 -0
- package/dist/api/services/organization.d.ts +13 -0
- package/dist/api/services/organization.js +43 -0
- package/dist/api/services/promotion.d.ts +13 -0
- package/dist/api/services/promotion.js +24 -0
- package/dist/api/services/transaction.d.ts +10 -0
- package/dist/api/services/transaction.js +31 -0
- package/dist/api/services/user.d.ts +72 -0
- package/dist/api/services/user.js +341 -0
- package/dist/constants/constants.d.ts +89 -0
- package/dist/constants/constants.js +89 -0
- package/dist/{bank-system/constants → constants}/enum.d.ts +880 -739
- package/dist/{bank-system/constants → constants}/enum.js +1312 -1164
- package/dist/constants/index.js +3 -0
- package/dist/constants/structure.d.ts +79 -0
- package/dist/{bank-system/constants → constants}/structure.js +13 -11
- package/dist/{bank-system/content → content}/accountCurrencies.js +1 -3
- package/dist/{bank-system/content → content}/countries.js +1 -3
- package/dist/{bank-system/content → content}/currencies.js +1 -3
- package/dist/content/index.js +4 -0
- package/dist/{bank-system/content → content}/state.js +1 -3
- package/dist/helper/api/axiosHelper.d.ts +11 -0
- package/dist/helper/api/axiosHelper.js +79 -0
- package/dist/helper/api/index.d.ts +2 -0
- package/dist/helper/api/index.js +2 -0
- package/dist/helper/api/responseHelper.d.ts +16 -0
- package/dist/helper/api/responseHelper.js +30 -0
- package/dist/helper/clientHelper.d.ts +11 -0
- package/dist/helper/clientHelper.js +26 -0
- package/dist/helper/dateTimeHelper.d.ts +8 -0
- package/dist/helper/dateTimeHelper.js +23 -0
- package/dist/helper/deviceHelper.d.ts +6 -0
- package/dist/helper/deviceHelper.js +37 -0
- package/dist/helper/geoHelper.d.ts +11 -0
- package/dist/helper/geoHelper.js +47 -0
- package/dist/helper/index.d.ts +6 -0
- package/dist/helper/index.js +6 -0
- package/dist/helper/userHelper.d.ts +10 -0
- package/dist/{bank-system/helper/index.js → helper/userHelper.js} +52 -165
- package/dist/index.d.ts +6 -8
- package/dist/index.js +5 -66
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/api/client/account.d.ts +8 -0
- package/dist/types/api/client/account.js +1 -0
- package/dist/types/api/client/auth.d.ts +8 -0
- package/dist/types/api/client/auth.js +1 -0
- package/dist/types/api/client/blockchain.d.ts +8 -0
- package/dist/types/api/client/blockchain.js +1 -0
- package/dist/types/api/client/index.d.ts +10 -0
- package/dist/types/api/client/index.js +1 -0
- package/dist/types/api/client/ipAddressAndLocation.d.ts +8 -0
- package/dist/types/api/client/ipAddressAndLocation.js +1 -0
- package/dist/types/api/client/limited.d.ts +8 -0
- package/dist/types/api/client/limited.js +1 -0
- package/dist/types/api/client/order.d.ts +8 -0
- package/dist/types/api/client/order.js +1 -0
- package/dist/types/api/client/organization.d.ts +9 -0
- package/dist/types/api/client/organization.js +1 -0
- package/dist/types/api/client/promotion.d.ts +7 -0
- package/dist/types/api/client/promotion.js +1 -0
- package/dist/types/api/client/transaction.d.ts +8 -0
- package/dist/types/api/client/transaction.js +1 -0
- package/dist/types/api/client/user.d.ts +9 -0
- package/dist/types/api/client/user.js +1 -0
- package/dist/types/api/data/account.d.ts +7 -0
- package/dist/types/api/data/account.js +1 -0
- package/dist/types/api/data/auth.d.ts +19 -0
- package/dist/types/api/data/auth.js +1 -0
- package/dist/types/api/data/blockchain.d.ts +60 -0
- package/dist/types/api/data/blockchain.js +1 -0
- package/dist/types/api/data/index.d.ts +9 -0
- package/dist/types/api/data/index.js +1 -0
- package/dist/types/api/data/limited.d.ts +16 -0
- package/dist/types/api/data/limited.js +1 -0
- package/dist/types/api/data/order.d.ts +10 -0
- package/dist/types/api/data/order.js +1 -0
- package/dist/types/api/data/organization.d.ts +37 -0
- package/dist/types/api/data/organization.js +1 -0
- package/dist/types/api/data/transaction.d.ts +22 -0
- package/dist/types/api/data/transaction.js +1 -0
- package/dist/types/api/data/user/address.d.ts +21 -0
- package/dist/types/api/data/user/address.js +1 -0
- package/dist/types/api/data/user/auth.d.ts +8 -0
- package/dist/types/api/data/user/auth.js +1 -0
- package/dist/types/api/data/user/bankAccount.d.ts +32 -0
- package/dist/types/api/data/user/bankAccount.js +1 -0
- package/dist/types/api/data/user/device.d.ts +30 -0
- package/dist/types/api/data/user/device.js +1 -0
- package/dist/types/api/data/user/document.d.ts +17 -0
- package/dist/types/api/data/user/document.js +1 -0
- package/dist/types/api/data/user/email.d.ts +28 -0
- package/dist/types/api/data/user/email.js +1 -0
- package/dist/types/api/data/user/identification.d.ts +17 -0
- package/dist/types/api/data/user/identification.js +1 -0
- package/dist/types/api/data/user/index.d.ts +42 -0
- package/dist/types/api/data/user/index.js +1 -0
- package/dist/types/api/data/user/personalInfo.d.ts +9 -0
- package/dist/types/api/data/user/personalInfo.js +1 -0
- package/dist/types/api/data/user/phone.d.ts +30 -0
- package/dist/types/api/data/user/phone.js +1 -0
- package/dist/types/api/data/user/preferences.d.ts +7 -0
- package/dist/types/api/data/user/preferences.js +1 -0
- package/dist/types/api/data/user/security.d.ts +26 -0
- package/dist/types/api/data/user/security.js +1 -0
- package/dist/types/api/data/user/ticket.d.ts +9 -0
- package/dist/types/api/data/user/ticket.js +1 -0
- package/dist/types/api/index.d.ts +2 -0
- package/dist/types/api/index.js +2 -0
- package/dist/types/banking/account/accountStatementData.d.ts +7 -0
- package/dist/types/banking/account/accountStatementData.js +1 -0
- package/dist/types/banking/account/accountdata.d.ts +19 -0
- package/dist/types/banking/account/accountdata.js +1 -0
- package/dist/types/banking/account/accountstatementdetails.d.ts +18 -0
- package/dist/types/banking/account/accountstatementdetails.js +1 -0
- package/dist/types/banking/account/accountstatementinfo.d.ts +12 -0
- package/dist/types/banking/account/accountstatementinfo.js +1 -0
- package/dist/types/banking/account/accountstatementtransaction.d.ts +15 -0
- package/dist/types/banking/account/accountstatementtransaction.js +1 -0
- package/dist/types/banking/account/chaindata/chaindata.d.ts +8 -0
- package/dist/types/banking/account/chaindata/chaindata.js +1 -0
- package/dist/types/banking/account/chaindata/index.d.ts +1 -0
- package/dist/types/banking/account/chaindata/index.js +1 -0
- package/dist/types/banking/account/creditlimit.d.ts +14 -0
- package/dist/types/banking/account/creditlimit.js +1 -0
- package/dist/types/banking/account/fulfilment.d.ts +17 -0
- package/dist/types/banking/account/fulfilment.js +1 -0
- package/dist/types/banking/account/index.d.ts +13 -0
- package/dist/types/banking/account/index.js +1 -0
- package/dist/types/banking/account/info.d.ts +32 -0
- package/dist/types/banking/account/info.js +1 -0
- package/dist/types/banking/account/limits/dailylimit.d.ts +19 -0
- package/dist/types/banking/account/limits/dailylimit.js +1 -0
- package/dist/types/banking/account/limits/deposit.d.ts +14 -0
- package/dist/types/banking/account/limits/deposit.js +1 -0
- package/dist/types/banking/account/limits/depositinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/depositinterchange.js +1 -0
- package/dist/types/banking/account/limits/depositmonthly.d.ts +8 -0
- package/dist/types/banking/account/limits/depositmonthly.js +1 -0
- package/dist/types/banking/account/limits/depositpaymentgateway.d.ts +7 -0
- package/dist/types/banking/account/limits/depositpaymentgateway.js +1 -0
- package/dist/types/banking/account/limits/deposityearly.d.ts +8 -0
- package/dist/types/banking/account/limits/deposityearly.js +1 -0
- package/dist/types/banking/account/limits/globaldailylimit.d.ts +11 -0
- package/dist/types/banking/account/limits/globaldailylimit.js +1 -0
- package/dist/types/banking/account/limits/index.d.ts +17 -0
- package/dist/types/banking/account/limits/index.js +1 -0
- package/dist/types/banking/account/limits/limits.d.ts +13 -0
- package/dist/types/banking/account/limits/limits.js +1 -0
- package/dist/types/banking/account/limits/monthlylimit.d.ts +7 -0
- package/dist/types/banking/account/limits/monthlylimit.js +1 -0
- package/dist/types/banking/account/limits/transferreceiving.d.ts +9 -0
- package/dist/types/banking/account/limits/transferreceiving.js +1 -0
- package/dist/types/banking/account/limits/transfersending.d.ts +9 -0
- package/dist/types/banking/account/limits/transfersending.js +1 -0
- package/dist/types/banking/account/limits/withdraw.d.ts +18 -0
- package/dist/types/banking/account/limits/withdraw.js +1 -0
- package/dist/types/banking/account/limits/withdrawinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/withdrawinterchange.js +1 -0
- package/dist/types/banking/account/limits/withdrawmonthly.d.ts +8 -0
- package/dist/types/banking/account/limits/withdrawmonthly.js +1 -0
- package/dist/types/banking/account/limits/withdraworder.d.ts +7 -0
- package/dist/types/banking/account/limits/withdraworder.js +1 -0
- package/dist/types/banking/account/limits/withdrawpurchaseinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/withdrawpurchaseinterchange.js +1 -0
- package/dist/types/banking/account/limits/yearlylimit.d.ts +8 -0
- package/dist/types/banking/account/limits/yearlylimit.js +1 -0
- package/dist/types/banking/account/options/bulkshipping.d.ts +11 -0
- package/dist/types/banking/account/options/bulkshipping.js +1 -0
- package/dist/types/banking/account/options/carddetails.d.ts +8 -0
- package/dist/types/banking/account/options/carddetails.js +1 -0
- package/dist/types/banking/account/options/cardproduction.d.ts +23 -0
- package/dist/types/banking/account/options/cardproduction.js +1 -0
- package/dist/types/banking/account/options/courier.d.ts +6 -0
- package/dist/types/banking/account/options/courier.js +1 -0
- package/dist/types/banking/account/options/fulfilment.d.ts +8 -0
- package/dist/types/banking/account/options/fulfilment.js +1 -0
- package/dist/types/banking/account/options/fulfilmentdetails.d.ts +7 -0
- package/dist/types/banking/account/options/fulfilmentdetails.js +1 -0
- package/dist/types/banking/account/options/fulfilmentinfo.d.ts +24 -0
- package/dist/types/banking/account/options/fulfilmentinfo.js +1 -0
- package/dist/types/banking/account/options/index.d.ts +9 -0
- package/dist/types/banking/account/options/index.js +1 -0
- package/dist/types/banking/account/options/options.d.ts +6 -0
- package/dist/types/banking/account/options/options.js +1 -0
- package/dist/types/banking/account/options/security.d.ts +4 -0
- package/dist/types/banking/account/options/security.js +1 -0
- package/dist/types/banking/account/security.d.ts +7 -0
- package/dist/types/banking/account/security.js +1 -0
- package/dist/types/banking/account/tokenization/index.d.ts +4 -0
- package/dist/types/banking/account/tokenization/index.js +1 -0
- package/dist/types/banking/account/tokenization/provision.d.ts +35 -0
- package/dist/types/banking/account/tokenization/provision.js +1 -0
- package/dist/types/banking/account/tokenization/provisionrequest.d.ts +9 -0
- package/dist/types/banking/account/tokenization/provisionrequest.js +1 -0
- package/dist/types/banking/account/tokenization/provisionresponse.d.ts +6 -0
- package/dist/types/banking/account/tokenization/provisionresponse.js +1 -0
- package/dist/types/banking/account/tokenization/tokenization.d.ts +16 -0
- package/dist/types/banking/account/tokenization/tokenization.js +1 -0
- package/dist/types/banking/blockchain/blockchainData.d.ts +8 -0
- package/dist/types/banking/blockchain/blockchainData.js +1 -0
- package/dist/types/banking/blockchain/chainTransactionData.d.ts +8 -0
- package/dist/types/banking/blockchain/chainTransactionData.js +1 -0
- package/dist/types/banking/blockchain/coin.d.ts +5 -0
- package/dist/types/banking/blockchain/coin.js +1 -0
- package/dist/types/banking/blockchain/delegateData.d.ts +3 -0
- package/dist/types/banking/blockchain/delegateData.js +1 -0
- package/dist/types/banking/blockchain/delegationData.d.ts +6 -0
- package/dist/types/banking/blockchain/delegationData.js +1 -0
- package/dist/types/banking/blockchain/index.d.ts +9 -0
- package/dist/types/banking/blockchain/index.js +1 -0
- package/dist/types/banking/blockchain/info.d.ts +16 -0
- package/dist/types/banking/blockchain/info.js +1 -0
- package/dist/types/banking/blockchain/multiSendData.d.ts +6 -0
- package/dist/types/banking/blockchain/multiSendData.js +1 -0
- package/dist/types/banking/blockchain/sendData.d.ts +6 -0
- package/dist/types/banking/blockchain/sendData.js +1 -0
- package/dist/types/banking/blockchain/undelegateData.d.ts +3 -0
- package/dist/types/banking/blockchain/undelegateData.js +1 -0
- package/dist/types/banking/common/archive.d.ts +7 -0
- package/dist/types/banking/common/archive.js +1 -0
- package/dist/types/banking/common/authentication.d.ts +5 -0
- package/dist/types/banking/common/authentication.js +1 -0
- package/dist/types/banking/common/bankextendeddata.d.ts +10 -0
- package/dist/types/banking/common/bankextendeddata.js +1 -0
- package/dist/types/banking/common/baseresult.d.ts +13 -0
- package/dist/types/banking/common/baseresult.js +1 -0
- package/dist/types/banking/common/beneficiaryaddress.d.ts +9 -0
- package/dist/types/banking/common/beneficiaryaddress.js +1 -0
- package/dist/types/banking/common/classification.d.ts +9 -0
- package/dist/types/banking/common/classification.js +1 -0
- package/dist/types/banking/common/contentfile.d.ts +6 -0
- package/dist/types/banking/common/contentfile.js +1 -0
- package/dist/types/banking/common/cryptoaddressextendeddata.d.ts +6 -0
- package/dist/types/banking/common/cryptoaddressextendeddata.js +1 -0
- package/dist/types/banking/common/currencyclouddata.d.ts +65 -0
- package/dist/types/banking/common/currencyclouddata.js +1 -0
- package/dist/types/banking/common/devicecultureinfo.d.ts +26 -0
- package/dist/types/banking/common/devicecultureinfo.js +1 -0
- package/dist/types/banking/common/externalhostinfo.d.ts +9 -0
- package/dist/types/banking/common/externalhostinfo.js +1 -0
- package/dist/types/banking/common/geocoordinates.d.ts +6 -0
- package/dist/types/banking/common/geocoordinates.js +1 -0
- package/dist/types/banking/common/history.d.ts +19 -0
- package/dist/types/banking/common/history.js +1 -0
- package/dist/types/banking/common/index.d.ts +21 -0
- package/dist/types/banking/common/index.js +1 -0
- package/dist/types/banking/common/lastactivity.d.ts +10 -0
- package/dist/types/banking/common/lastactivity.js +1 -0
- package/dist/types/banking/common/notes.d.ts +5 -0
- package/dist/types/banking/common/notes.js +1 -0
- package/dist/types/banking/common/openpayddata.d.ts +34 -0
- package/dist/types/banking/common/openpayddata.js +1 -0
- package/dist/types/banking/common/people/alias.d.ts +10 -0
- package/dist/types/banking/common/people/alias.js +1 -0
- package/dist/types/banking/common/people/billpaydata.d.ts +2 -0
- package/dist/types/banking/common/people/billpaydata.js +1 -0
- package/dist/types/banking/common/people/customerinfo.d.ts +6 -0
- package/dist/types/banking/common/people/customerinfo.js +1 -0
- package/dist/types/banking/common/people/eftdata.d.ts +2 -0
- package/dist/types/banking/common/people/eftdata.js +1 -0
- package/dist/types/banking/common/people/etransferdata.d.ts +6 -0
- package/dist/types/banking/common/people/etransferdata.js +1 -0
- package/dist/types/banking/common/people/index.d.ts +6 -0
- package/dist/types/banking/common/people/index.js +1 -0
- package/dist/types/banking/common/people/peoplesdata.d.ts +7 -0
- package/dist/types/banking/common/people/peoplesdata.js +1 -0
- package/dist/{bank-system/interfaces/commonInterface.d.ts → types/banking/common/result.d.ts} +3 -2
- package/dist/types/banking/common/result.js +1 -0
- package/dist/types/banking/common/security/index.d.ts +2 -0
- package/dist/types/banking/common/security/index.js +1 -0
- package/dist/types/banking/common/security/simplifiedaccessrule.d.ts +5 -0
- package/dist/types/banking/common/security/simplifiedaccessrule.js +1 -0
- package/dist/types/banking/common/security/simplifiedaccessruleinfo.d.ts +13 -0
- package/dist/types/banking/common/security/simplifiedaccessruleinfo.js +1 -0
- package/dist/types/banking/common/snbdata.d.ts +6 -0
- package/dist/types/banking/common/snbdata.js +1 -0
- package/dist/types/banking/common/workinghour.d.ts +11 -0
- package/dist/types/banking/common/workinghour.js +1 -0
- package/dist/types/banking/entities/address.d.ts +24 -0
- package/dist/types/banking/entities/address.js +1 -0
- package/dist/types/banking/entities/bankaccount.d.ts +43 -0
- package/dist/types/banking/entities/bankaccount.js +1 -0
- package/dist/types/banking/entities/creditcard.d.ts +25 -0
- package/dist/types/banking/entities/creditcard.js +1 -0
- package/dist/types/banking/entities/cryptoWallet.d.ts +7 -0
- package/dist/types/banking/entities/cryptoWallet.js +1 -0
- package/dist/types/banking/entities/cryptoaddress.d.ts +18 -0
- package/dist/types/banking/entities/cryptoaddress.js +1 -0
- package/dist/types/banking/entities/customField/index.d.ts +2 -0
- package/dist/types/banking/entities/customField/index.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/giftData.d.ts +12 -0
- package/dist/types/banking/entities/customField/promotionData/giftData.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/index.d.ts +3 -0
- package/dist/types/banking/entities/customField/promotionData/index.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/promotionData.d.ts +7 -0
- package/dist/types/banking/entities/customField/promotionData/promotionData.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/referralData.d.ts +5 -0
- package/dist/types/banking/entities/customField/promotionData/referralData.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/action.d.ts +5 -0
- package/dist/types/banking/entities/customField/userAccessControl/action.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/index.d.ts +4 -0
- package/dist/types/banking/entities/customField/userAccessControl/index.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/page.d.ts +7 -0
- package/dist/types/banking/entities/customField/userAccessControl/page.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/section.d.ts +7 -0
- package/dist/types/banking/entities/customField/userAccessControl/section.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/userAccessControl.d.ts +5 -0
- package/dist/types/banking/entities/customField/userAccessControl/userAccessControl.js +1 -0
- package/dist/types/banking/entities/device.d.ts +25 -0
- package/dist/types/banking/entities/device.js +1 -0
- package/dist/types/banking/entities/devicehistory.d.ts +19 -0
- package/dist/types/banking/entities/devicehistory.js +1 -0
- package/dist/types/banking/entities/email.d.ts +15 -0
- package/dist/types/banking/entities/email.js +1 -0
- package/dist/types/banking/entities/externalauthentication.d.ts +15 -0
- package/dist/types/banking/entities/externalauthentication.js +1 -0
- package/dist/types/banking/entities/generalrequirements.d.ts +10 -0
- package/dist/types/banking/entities/generalrequirements.js +1 -0
- package/dist/types/banking/entities/identification.d.ts +23 -0
- package/dist/types/banking/entities/identification.js +1 -0
- package/dist/types/banking/entities/index.d.ts +20 -0
- package/dist/types/banking/entities/index.js +1 -0
- package/dist/types/banking/entities/json/IdentificationExtraData.d.ts +5 -0
- package/dist/types/banking/entities/json/IdentificationExtraData.js +1 -0
- package/dist/types/banking/entities/json/device/deviceextendedinfo.d.ts +10 -0
- package/dist/types/banking/entities/json/device/deviceextendedinfo.js +1 -0
- package/dist/types/banking/entities/json/device/index.d.ts +2 -0
- package/dist/types/banking/entities/json/device/index.js +1 -0
- package/dist/types/banking/entities/json/device/siminfo.d.ts +8 -0
- package/dist/types/banking/entities/json/device/siminfo.js +1 -0
- package/dist/types/banking/entities/json/index.d.ts +2 -0
- package/dist/types/banking/entities/json/index.js +1 -0
- package/dist/types/banking/entities/notification.d.ts +9 -0
- package/dist/types/banking/entities/notification.js +1 -0
- package/dist/types/banking/entities/paymentCryptoAddress.d.ts +11 -0
- package/dist/types/banking/entities/paymentCryptoAddress.js +1 -0
- package/dist/types/banking/entities/paymentInfo.d.ts +16 -0
- package/dist/types/banking/entities/paymentInfo.js +1 -0
- package/dist/types/banking/entities/phone.d.ts +16 -0
- package/dist/types/banking/entities/phone.js +1 -0
- package/dist/types/banking/entities/relationship.d.ts +24 -0
- package/dist/types/banking/entities/relationship.js +1 -0
- package/dist/types/banking/entities/socialmedia.d.ts +12 -0
- package/dist/types/banking/entities/socialmedia.js +1 -0
- package/dist/types/banking/entities/termsconditions.d.ts +8 -0
- package/dist/types/banking/entities/termsconditions.js +1 -0
- package/dist/types/banking/group/details.d.ts +9 -0
- package/dist/types/banking/group/details.js +1 -0
- package/dist/types/banking/group/groupdata.d.ts +12 -0
- package/dist/types/banking/group/groupdata.js +1 -0
- package/dist/types/banking/group/groupuser.d.ts +16 -0
- package/dist/types/banking/group/groupuser.js +1 -0
- package/dist/types/banking/group/index.d.ts +7 -0
- package/dist/types/banking/group/index.js +1 -0
- package/dist/types/banking/group/info.d.ts +16 -0
- package/dist/types/banking/group/info.js +1 -0
- package/dist/types/banking/group/localization.d.ts +5 -0
- package/dist/types/banking/group/localization.js +1 -0
- package/dist/types/banking/group/media.d.ts +5 -0
- package/dist/types/banking/group/media.js +1 -0
- package/dist/types/banking/group/settings/classificationinfo.d.ts +7 -0
- package/dist/types/banking/group/settings/classificationinfo.js +1 -0
- package/dist/types/banking/group/settings/companyusers.d.ts +5 -0
- package/dist/types/banking/group/settings/companyusers.js +1 -0
- package/dist/types/banking/group/settings/externalintegration.d.ts +6 -0
- package/dist/types/banking/group/settings/externalintegration.js +1 -0
- package/dist/types/banking/group/settings/fortnox.d.ts +9 -0
- package/dist/types/banking/group/settings/fortnox.js +1 -0
- package/dist/types/banking/group/settings/index.d.ts +8 -0
- package/dist/types/banking/group/settings/index.js +1 -0
- package/dist/types/banking/group/settings/messagingsetup.d.ts +4 -0
- package/dist/types/banking/group/settings/messagingsetup.js +1 -0
- package/dist/types/banking/group/settings/qvitoo.d.ts +15 -0
- package/dist/types/banking/group/settings/qvitoo.js +1 -0
- package/dist/types/banking/group/settings/setting.d.ts +6 -0
- package/dist/types/banking/group/settings/setting.js +1 -0
- package/dist/types/banking/group/settings/voucherrows.d.ts +12 -0
- package/dist/types/banking/group/settings/voucherrows.js +1 -0
- package/dist/types/banking/index.d.ts +11 -0
- package/dist/types/banking/index.js +1 -0
- package/dist/types/banking/oauth/credentialsData.d.ts +16 -0
- package/dist/types/banking/oauth/credentialsData.js +1 -0
- package/dist/types/banking/oauth/index.d.ts +2 -0
- package/dist/types/banking/oauth/index.js +1 -0
- package/dist/types/banking/oauth/tokenData.d.ts +19 -0
- package/dist/types/banking/oauth/tokenData.js +1 -0
- package/dist/types/banking/order/customForm/ggez1.d.ts +20 -0
- package/dist/types/banking/order/customForm/ggez1.js +1 -0
- package/dist/types/banking/order/customForm/ggezGiftRewards.d.ts +12 -0
- package/dist/types/banking/order/customForm/ggezGiftRewards.js +1 -0
- package/dist/types/banking/order/customForm/ggezReferralRewards.d.ts +24 -0
- package/dist/types/banking/order/customForm/ggezReferralRewards.js +1 -0
- package/dist/types/banking/order/customForm/index.d.ts +3 -0
- package/dist/types/banking/order/customForm/index.js +1 -0
- package/dist/types/banking/order/customFormData.d.ts +6 -0
- package/dist/types/banking/order/customFormData.js +1 -0
- package/dist/types/banking/order/features.d.ts +5 -0
- package/dist/types/banking/order/features.js +1 -0
- package/dist/types/banking/order/fee.d.ts +15 -0
- package/dist/types/banking/order/fee.js +1 -0
- package/dist/types/banking/order/fulfilment/fulfilmentInfo.d.ts +12 -0
- package/dist/types/banking/order/fulfilment/fulfilmentInfo.js +1 -0
- package/dist/types/banking/order/fulfilment/index.d.ts +3 -0
- package/dist/types/banking/order/fulfilment/index.js +1 -0
- package/dist/types/banking/order/fulfilment/orderFulfilment.d.ts +15 -0
- package/dist/types/banking/order/fulfilment/orderFulfilment.js +1 -0
- package/dist/types/banking/order/fulfilment/pinCodeFulfilment.d.ts +6 -0
- package/dist/types/banking/order/fulfilment/pinCodeFulfilment.js +1 -0
- package/dist/types/banking/order/index.d.ts +22 -0
- package/dist/types/banking/order/index.js +1 -0
- package/dist/types/banking/order/info.d.ts +30 -0
- package/dist/types/banking/order/info.js +1 -0
- package/dist/types/banking/order/items/index.d.ts +2 -0
- package/dist/types/banking/order/items/index.js +2 -0
- package/dist/types/banking/order/items/info.d.ts +7 -0
- package/dist/types/banking/order/items/info.js +1 -0
- package/dist/types/banking/order/items/orderItem.d.ts +14 -0
- package/dist/types/banking/order/items/orderItem.js +1 -0
- package/dist/types/banking/order/lotteryTicket.d.ts +17 -0
- package/dist/types/banking/order/lotteryTicket.js +1 -0
- package/dist/types/banking/order/orderData.d.ts +12 -0
- package/dist/types/banking/order/orderData.js +1 -0
- package/dist/types/banking/order/orderError.d.ts +14 -0
- package/dist/types/banking/order/orderError.js +1 -0
- package/dist/types/banking/order/paymentMethod.d.ts +12 -0
- package/dist/types/banking/order/paymentMethod.js +1 -0
- package/dist/types/banking/order/pinCode.d.ts +13 -0
- package/dist/types/banking/order/pinCode.js +1 -0
- package/dist/types/banking/order/profit.d.ts +14 -0
- package/dist/types/banking/order/profit.js +1 -0
- package/dist/types/banking/order/promotion.d.ts +2 -0
- package/dist/types/banking/order/promotion.js +1 -0
- package/dist/types/banking/order/reverseData.d.ts +12 -0
- package/dist/types/banking/order/reverseData.js +1 -0
- package/dist/types/banking/order/reverseItem.d.ts +7 -0
- package/dist/types/banking/order/reverseItem.js +1 -0
- package/dist/types/banking/order/reversePinCode.d.ts +4 -0
- package/dist/types/banking/order/reversePinCode.js +1 -0
- package/dist/types/banking/order/ticket.d.ts +2 -0
- package/dist/types/banking/order/ticket.js +1 -0
- package/dist/types/banking/order/topUp.d.ts +4 -0
- package/dist/types/banking/order/topUp.js +1 -0
- package/dist/types/banking/order/variant.d.ts +26 -0
- package/dist/types/banking/order/variant.js +1 -0
- package/dist/types/banking/order/voucher.d.ts +10 -0
- package/dist/types/banking/order/voucher.js +1 -0
- package/dist/types/banking/order/voucherInfo.d.ts +7 -0
- package/dist/types/banking/order/voucherInfo.js +1 -0
- package/dist/types/banking/organization/details.d.ts +7 -0
- package/dist/types/banking/organization/details.js +1 -0
- package/dist/types/banking/organization/index.d.ts +3 -0
- package/dist/types/banking/organization/index.js +1 -0
- package/dist/types/banking/organization/info.d.ts +17 -0
- package/dist/types/banking/organization/info.js +1 -0
- package/dist/types/banking/organization/organizationdata.d.ts +22 -0
- package/dist/types/banking/organization/organizationdata.js +1 -0
- package/dist/types/banking/ticket/content.d.ts +5 -0
- package/dist/types/banking/ticket/content.js +1 -0
- package/dist/types/banking/ticket/history.d.ts +6 -0
- package/dist/types/banking/ticket/history.js +1 -0
- package/dist/types/banking/ticket/index.d.ts +5 -0
- package/dist/types/banking/ticket/index.js +1 -0
- package/dist/types/banking/ticket/info.d.ts +34 -0
- package/dist/types/banking/ticket/info.js +1 -0
- package/dist/types/banking/ticket/subentity.d.ts +7 -0
- package/dist/types/banking/ticket/subentity.js +1 -0
- package/dist/types/banking/ticket/ticketdata.d.ts +7 -0
- package/dist/types/banking/ticket/ticketdata.js +1 -0
- package/dist/types/banking/transaction/billingAddress.d.ts +11 -0
- package/dist/types/banking/transaction/billingAddress.js +1 -0
- package/dist/types/banking/transaction/conversion.d.ts +21 -0
- package/dist/types/banking/transaction/conversion.js +1 -0
- package/dist/types/banking/transaction/exchange.d.ts +10 -0
- package/dist/types/banking/transaction/exchange.js +1 -0
- package/dist/types/banking/transaction/fee.d.ts +9 -0
- package/dist/types/banking/transaction/fee.js +1 -0
- package/dist/types/banking/transaction/index.d.ts +10 -0
- package/dist/types/banking/transaction/index.js +1 -0
- package/dist/types/banking/transaction/info.d.ts +33 -0
- package/dist/types/banking/transaction/info.js +1 -0
- package/dist/types/banking/transaction/receiverInfo.d.ts +8 -0
- package/dist/types/banking/transaction/receiverInfo.js +1 -0
- package/dist/types/banking/transaction/tax.d.ts +9 -0
- package/dist/types/banking/transaction/tax.js +1 -0
- package/dist/types/banking/transaction/transactionData.d.ts +23 -0
- package/dist/types/banking/transaction/transactionData.js +1 -0
- package/dist/types/banking/transaction/transactionInquiry.d.ts +26 -0
- package/dist/types/banking/transaction/transactionInquiry.js +1 -0
- package/dist/types/banking/transaction/transfer.d.ts +10 -0
- package/dist/types/banking/transaction/transfer.js +1 -0
- package/dist/types/banking/user/activity.d.ts +15 -0
- package/dist/types/banking/user/activity.js +1 -0
- package/dist/types/banking/user/attachment.d.ts +9 -0
- package/dist/types/banking/user/attachment.js +1 -0
- package/dist/types/banking/user/commerce/commerce.d.ts +6 -0
- package/dist/types/banking/user/commerce/commerce.js +1 -0
- package/dist/types/banking/user/commerce/index.d.ts +3 -0
- package/dist/types/banking/user/commerce/index.js +1 -0
- package/dist/types/banking/user/commerce/role.d.ts +5 -0
- package/dist/types/banking/user/commerce/role.js +1 -0
- package/dist/types/banking/user/commerce/usercommerceconfiguration.d.ts +6 -0
- package/dist/types/banking/user/commerce/usercommerceconfiguration.js +1 -0
- package/dist/types/banking/user/confirmForgetSecurityData.d.ts +5 -0
- package/dist/types/banking/user/confirmForgetSecurityData.js +1 -0
- package/dist/types/banking/user/confirmSecurityData.d.ts +4 -0
- package/dist/types/banking/user/confirmSecurityData.js +1 -0
- package/dist/types/banking/user/confirmUserSecurity.d.ts +8 -0
- package/dist/types/banking/user/confirmUserSecurity.js +1 -0
- package/dist/types/banking/user/confirmUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/confirmUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/currency.d.ts +7 -0
- package/dist/types/banking/user/currency.js +1 -0
- package/dist/types/banking/user/documentdata.d.ts +8 -0
- package/dist/types/banking/user/documentdata.js +1 -0
- package/dist/types/banking/user/documentinfo.d.ts +25 -0
- package/dist/types/banking/user/documentinfo.js +1 -0
- package/dist/types/banking/user/forgetPassword.d.ts +6 -0
- package/dist/types/banking/user/forgetPassword.js +1 -0
- package/dist/types/banking/user/forgetSecurityData.d.ts +7 -0
- package/dist/types/banking/user/forgetSecurityData.js +1 -0
- package/dist/types/banking/user/forgetSecurityInfo.d.ts +7 -0
- package/dist/types/banking/user/forgetSecurityInfo.js +1 -0
- package/dist/types/banking/user/index.d.ts +36 -0
- package/dist/types/banking/user/index.js +1 -0
- package/dist/types/banking/user/info.d.ts +16 -0
- package/dist/types/banking/user/info.js +1 -0
- package/dist/types/banking/user/personalinfo.d.ts +15 -0
- package/dist/types/banking/user/personalinfo.js +1 -0
- package/dist/types/banking/user/preferences.d.ts +15 -0
- package/dist/types/banking/user/preferences.js +1 -0
- package/dist/types/banking/user/resetPassword.d.ts +5 -0
- package/dist/types/banking/user/resetPassword.js +1 -0
- package/dist/types/banking/user/resetSecurityCode.d.ts +5 -0
- package/dist/types/banking/user/resetSecurityCode.js +1 -0
- package/dist/types/banking/user/resetSecurityData.d.ts +8 -0
- package/dist/types/banking/user/resetSecurityData.js +1 -0
- package/dist/types/banking/user/resetSecurityQuestions.d.ts +8 -0
- package/dist/types/banking/user/resetSecurityQuestions.js +1 -0
- package/dist/types/banking/user/resetUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/resetUserSecurity.js +1 -0
- package/dist/types/banking/user/resetUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/resetUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/security.d.ts +11 -0
- package/dist/types/banking/user/security.js +1 -0
- package/dist/types/banking/user/userauthenticationdata.d.ts +12 -0
- package/dist/types/banking/user/userauthenticationdata.js +1 -0
- package/dist/types/banking/user/usercreditlimit.d.ts +5 -0
- package/dist/types/banking/user/usercreditlimit.js +1 -0
- package/dist/types/banking/user/userdata.d.ts +39 -0
- package/dist/types/banking/user/userdata.js +1 -0
- package/dist/types/banking/user/validateForgetSecurityData.d.ts +7 -0
- package/dist/types/banking/user/validateForgetSecurityData.js +1 -0
- package/dist/types/banking/user/validateLimitedSecurity.d.ts +7 -0
- package/dist/types/banking/user/validateLimitedSecurity.js +1 -0
- package/dist/types/banking/user/validateLimitedSecurityData.d.ts +6 -0
- package/dist/types/banking/user/validateLimitedSecurityData.js +1 -0
- package/dist/types/banking/user/validateSecurityData.d.ts +11 -0
- package/dist/types/banking/user/validateSecurityData.js +1 -0
- package/dist/types/banking/user/validateUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/validateUserSecurity.js +1 -0
- package/dist/types/banking/user/validateUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/validateUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/validation/index.d.ts +2 -0
- package/dist/types/banking/user/validation/index.js +1 -0
- package/dist/types/banking/user/validation/info.d.ts +18 -0
- package/dist/types/banking/user/validation/info.js +1 -0
- package/dist/types/banking/user/validation/validationdata.d.ts +7 -0
- package/dist/types/banking/user/validation/validationdata.js +1 -0
- package/dist/types/banking/user/verifySecurityData.d.ts +8 -0
- package/dist/types/banking/user/verifySecurityData.js +1 -0
- package/dist/types/banking/user/verifyUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/verifyUserSecurity.js +1 -0
- package/dist/types/banking/user/verifyUserSecurityInfo.d.ts +13 -0
- package/dist/types/banking/user/verifyUserSecurityInfo.js +1 -0
- package/dist/types/helper/axiosHelper.d.ts +10 -0
- package/dist/types/helper/axiosHelper.js +1 -0
- package/dist/types/helper/geoHelper.d.ts +8 -0
- package/dist/types/helper/geoHelper.js +1 -0
- package/dist/types/helper/index.d.ts +2 -0
- package/dist/types/helper/index.js +2 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.js +1 -0
- package/dist/types/node/amount.d.ts +5 -0
- package/dist/types/node/amount.js +1 -0
- package/dist/types/node/index.d.ts +3 -0
- package/dist/types/node/index.js +3 -0
- package/dist/types/node/lotteryPrize.d.ts +10 -0
- package/dist/types/node/lotteryPrize.js +1 -0
- package/dist/types/node/promotionDetails.d.ts +25 -0
- package/dist/types/node/promotionDetails.js +1 -0
- package/dist/{bank-system/utils → utils}/chainAddressMasking.js +1 -3
- package/dist/{bank-system/utils → utils}/copyText.js +1 -5
- package/dist/utils/countryAndCurrencyData.js +17 -0
- package/dist/{bank-system/utils → utils}/enumToOption.js +2 -5
- package/dist/{bank-system/utils → utils}/generateOneLiner.js +1 -4
- package/dist/{bank-system/utils → utils}/generateSourceId.js +1 -4
- package/dist/utils/getCountryName.js +20 -0
- package/dist/utils/getEnumName.js +6 -0
- package/dist/utils/getStateByCountryCode.js +8 -0
- package/dist/utils/handleEncryption/decryptData.js +35 -0
- package/dist/utils/handleEncryption/encryptData.js +11 -0
- package/dist/utils/handleEncryption/index.js +4 -0
- package/dist/{bank-system/utils → utils}/handleEncryption/key.js +10 -17
- package/dist/{bank-system/utils → utils}/index.d.ts +1 -2
- package/dist/utils/index.js +14 -0
- package/dist/{bank-system/utils → utils}/maskingFunction.js +1 -4
- package/dist/{bank-system/utils → utils}/regex.js +1 -5
- package/dist/{bank-system/utils → utils}/sortUserInfo.js +2 -5
- package/package.json +12 -5
- package/dist/bank-system/constants/constants.d.ts +0 -15
- package/dist/bank-system/constants/constants.js +0 -21
- package/dist/bank-system/constants/index.js +0 -19
- package/dist/bank-system/constants/structure.d.ts +0 -74
- package/dist/bank-system/content/index.js +0 -12
- package/dist/bank-system/helper/data.d.ts +0 -46
- package/dist/bank-system/helper/data.js +0 -57
- package/dist/bank-system/helper/dataStructure.d.ts +0 -3274
- package/dist/bank-system/helper/dataStructure.js +0 -1499
- package/dist/bank-system/helper/index.d.ts +0 -29
- package/dist/bank-system/interfaces/accountInterface.d.ts +0 -27
- package/dist/bank-system/interfaces/accountInterface.js +0 -2
- package/dist/bank-system/interfaces/bankingSystemInterface.d.ts +0 -316
- package/dist/bank-system/interfaces/bankingSystemInterface.js +0 -2
- package/dist/bank-system/interfaces/blockchain.d.ts +0 -149
- package/dist/bank-system/interfaces/blockchain.js +0 -2
- package/dist/bank-system/interfaces/commonInterface.js +0 -2
- package/dist/bank-system/interfaces/deviceInterface.d.ts +0 -34
- package/dist/bank-system/interfaces/deviceInterface.js +0 -2
- package/dist/bank-system/interfaces/index.d.ts +0 -6
- package/dist/bank-system/interfaces/index.js +0 -22
- package/dist/bank-system/interfaces/interface.d.ts +0 -578
- package/dist/bank-system/interfaces/interface.js +0 -2
- package/dist/bank-system/interfaces/organizationInterface.d.ts +0 -119
- package/dist/bank-system/interfaces/organizationInterface.js +0 -2
- package/dist/bank-system/interfaces/promotion.d.ts +0 -47
- package/dist/bank-system/interfaces/promotion.js +0 -2
- package/dist/bank-system/interfaces/signInterface.d.ts +0 -128
- package/dist/bank-system/interfaces/signInterface.js +0 -2
- package/dist/bank-system/interfaces/transactionInterface.d.ts +0 -11
- package/dist/bank-system/interfaces/transactionInterface.js +0 -2
- package/dist/bank-system/restApi/index.d.ts +0 -8
- package/dist/bank-system/restApi/index.js +0 -32
- package/dist/bank-system/services/account.d.ts +0 -39
- package/dist/bank-system/services/account.js +0 -139
- package/dist/bank-system/services/addresses.d.ts +0 -48
- package/dist/bank-system/services/addresses.js +0 -121
- package/dist/bank-system/services/auth.d.ts +0 -90
- package/dist/bank-system/services/auth.js +0 -320
- package/dist/bank-system/services/bankAccount.d.ts +0 -48
- package/dist/bank-system/services/bankAccount.js +0 -122
- package/dist/bank-system/services/blockchain.d.ts +0 -28
- package/dist/bank-system/services/blockchain.js +0 -109
- package/dist/bank-system/services/device.d.ts +0 -46
- package/dist/bank-system/services/device.js +0 -197
- package/dist/bank-system/services/document.d.ts +0 -15
- package/dist/bank-system/services/document.js +0 -48
- package/dist/bank-system/services/email.d.ts +0 -70
- package/dist/bank-system/services/email.js +0 -161
- package/dist/bank-system/services/history.d.ts +0 -14
- package/dist/bank-system/services/history.js +0 -45
- package/dist/bank-system/services/identification.d.ts +0 -37
- package/dist/bank-system/services/identification.js +0 -107
- package/dist/bank-system/services/index.d.ts +0 -19
- package/dist/bank-system/services/index.js +0 -39
- package/dist/bank-system/services/organization.d.ts +0 -28
- package/dist/bank-system/services/organization.js +0 -120
- package/dist/bank-system/services/personalInfo.d.ts +0 -26
- package/dist/bank-system/services/personalInfo.js +0 -86
- package/dist/bank-system/services/phone.d.ts +0 -70
- package/dist/bank-system/services/phone.js +0 -164
- package/dist/bank-system/services/security.d.ts +0 -114
- package/dist/bank-system/services/security.js +0 -271
- package/dist/bank-system/services/ticket.d.ts +0 -15
- package/dist/bank-system/services/ticket.js +0 -55
- package/dist/bank-system/services/token.d.ts +0 -11
- package/dist/bank-system/services/token.js +0 -79
- package/dist/bank-system/services/transaction.d.ts +0 -10
- package/dist/bank-system/services/transaction.js +0 -51
- package/dist/bank-system/services/verifyAndConfirm.d.ts +0 -116
- package/dist/bank-system/services/verifyAndConfirm.js +0 -302
- package/dist/bank-system/utils/blockchainHelper.d.ts +0 -6
- package/dist/bank-system/utils/blockchainHelper.js +0 -41
- package/dist/bank-system/utils/countryAndCurrencyData.js +0 -22
- package/dist/bank-system/utils/fillDeviceDetails.d.ts +0 -23
- package/dist/bank-system/utils/fillDeviceDetails.js +0 -44
- package/dist/bank-system/utils/getCountryName.js +0 -27
- package/dist/bank-system/utils/getEnumName.js +0 -9
- package/dist/bank-system/utils/getStateByCountryCode.js +0 -14
- package/dist/bank-system/utils/handleEncryption/decryptData.js +0 -76
- package/dist/bank-system/utils/handleEncryption/encryptData.js +0 -46
- package/dist/bank-system/utils/handleEncryption/index.js +0 -12
- package/dist/bank-system/utils/index.js +0 -42
- package/dist/bank-system/utils/info.d.ts +0 -8
- package/dist/bank-system/utils/info.js +0 -74
- package/dist/keplr-config/chainInfo.d.ts +0 -8
- package/dist/keplr-config/chainInfo.js +0 -65
- package/dist/{bank-system/constants → constants}/index.d.ts +1 -1
- /package/dist/{bank-system/content → content}/accountCurrencies.d.ts +0 -0
- /package/dist/{bank-system/content → content}/countries.d.ts +0 -0
- /package/dist/{bank-system/content → content}/currencies.d.ts +0 -0
- /package/dist/{bank-system/content → content}/index.d.ts +0 -0
- /package/dist/{bank-system/content → content}/state.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/chainAddressMasking.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/copyText.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/countryAndCurrencyData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/enumToOption.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/generateOneLiner.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/generateSourceId.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getCountryName.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getEnumName.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getStateByCountryCode.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/decryptData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/encryptData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/index.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/key.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/maskingFunction.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/regex.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/sortUserInfo.d.ts +0 -0
@@ -1,76 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
-
}) : function(o, v) {
|
16
|
-
o["default"] = v;
|
17
|
-
});
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
19
|
-
var ownKeys = function(o) {
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
21
|
-
var ar = [];
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
23
|
-
return ar;
|
24
|
-
};
|
25
|
-
return ownKeys(o);
|
26
|
-
};
|
27
|
-
return function (mod) {
|
28
|
-
if (mod && mod.__esModule) return mod;
|
29
|
-
var result = {};
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
31
|
-
__setModuleDefault(result, mod);
|
32
|
-
return result;
|
33
|
-
};
|
34
|
-
})();
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
36
|
-
exports.decryptString = decryptString;
|
37
|
-
exports.errorHandler = errorHandler;
|
38
|
-
const crypto = __importStar(require("crypto"));
|
39
|
-
const info_1 = require("../info");
|
40
|
-
function decryptString(cipherText, key, iv) {
|
41
|
-
try {
|
42
|
-
const keyBuffer = Buffer.from(key, "utf8");
|
43
|
-
const ivBuffer = Buffer.from(iv, "utf8");
|
44
|
-
const decipher = crypto.createDecipheriv("aes-256-cbc", keyBuffer, ivBuffer);
|
45
|
-
let decrypted = decipher.update(cipherText, "base64", "utf8");
|
46
|
-
decrypted += decipher.final("utf8");
|
47
|
-
return decrypted;
|
48
|
-
}
|
49
|
-
catch (error) {
|
50
|
-
return JSON.stringify(error);
|
51
|
-
}
|
52
|
-
}
|
53
|
-
async function errorHandler(baseUrl, error) {
|
54
|
-
let ipAddressAndLocation = await (0, info_1.IPAddressAndLocation)(`${baseUrl}/v1/myipaddress`);
|
55
|
-
let myIPAddress = "";
|
56
|
-
if (ipAddressAndLocation instanceof Error) {
|
57
|
-
console.error("Error:", ipAddressAndLocation.message);
|
58
|
-
}
|
59
|
-
else {
|
60
|
-
myIPAddress = ipAddressAndLocation.ip_address;
|
61
|
-
console.log("IP Address and Location:", ipAddressAndLocation);
|
62
|
-
}
|
63
|
-
return {
|
64
|
-
Class_Name: "decryption",
|
65
|
-
Function_Name: "decryption",
|
66
|
-
Type: 0,
|
67
|
-
Inner_Exception: error,
|
68
|
-
Message: "Decryption Failed",
|
69
|
-
Session_ID: "N/A",
|
70
|
-
Source_App: "N/A",
|
71
|
-
Source_ID: "N/A",
|
72
|
-
Source_IP_Address: myIPAddress,
|
73
|
-
Stack_Trace: "N/A",
|
74
|
-
Target_Site: "N/A",
|
75
|
-
};
|
76
|
-
}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
-
}) : function(o, v) {
|
16
|
-
o["default"] = v;
|
17
|
-
});
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
19
|
-
var ownKeys = function(o) {
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
21
|
-
var ar = [];
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
23
|
-
return ar;
|
24
|
-
};
|
25
|
-
return ownKeys(o);
|
26
|
-
};
|
27
|
-
return function (mod) {
|
28
|
-
if (mod && mod.__esModule) return mod;
|
29
|
-
var result = {};
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
31
|
-
__setModuleDefault(result, mod);
|
32
|
-
return result;
|
33
|
-
};
|
34
|
-
})();
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
36
|
-
exports.encryptString = encryptString;
|
37
|
-
const buffer_1 = require("buffer");
|
38
|
-
const crypto = __importStar(require("crypto"));
|
39
|
-
function encryptString(plainText, key, iv) {
|
40
|
-
const keyBuffer = buffer_1.Buffer.from(key, "utf8");
|
41
|
-
const ivBuffer = buffer_1.Buffer.from(iv, "utf8");
|
42
|
-
const cipher = crypto.createCipheriv("aes-256-cbc", keyBuffer, ivBuffer);
|
43
|
-
let encrypted = cipher.update(plainText, "utf8", "base64");
|
44
|
-
encrypted += cipher.final("base64");
|
45
|
-
return encrypted;
|
46
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.generatekeyAndIvCode = exports.generatekeyAndIvUsingUserID = exports.generatekeyAndIv = exports.paddingLeft = exports.decryptString = exports.encryptString = void 0;
|
4
|
-
const encryptData_1 = require("./encryptData");
|
5
|
-
Object.defineProperty(exports, "encryptString", { enumerable: true, get: function () { return encryptData_1.encryptString; } });
|
6
|
-
const decryptData_1 = require("./decryptData");
|
7
|
-
Object.defineProperty(exports, "decryptString", { enumerable: true, get: function () { return decryptData_1.decryptString; } });
|
8
|
-
const key_1 = require("./key");
|
9
|
-
Object.defineProperty(exports, "paddingLeft", { enumerable: true, get: function () { return key_1.paddingLeft; } });
|
10
|
-
Object.defineProperty(exports, "generatekeyAndIv", { enumerable: true, get: function () { return key_1.generatekeyAndIv; } });
|
11
|
-
Object.defineProperty(exports, "generatekeyAndIvUsingUserID", { enumerable: true, get: function () { return key_1.generatekeyAndIvUsingUserID; } });
|
12
|
-
Object.defineProperty(exports, "generatekeyAndIvCode", { enumerable: true, get: function () { return key_1.generatekeyAndIvCode; } });
|
@@ -1,42 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.getGeoCoordinatesAndIPAddress = exports.getGeoCoordinates = exports.getTimezone = exports.getStateByCountry = exports.maskMiddleOfString = exports.generateOneLiner = exports.enumsToOptions = exports.getCountryName = exports.getEnumName = exports.useRegExp = exports.UseCountryAndCurrencyData = exports.chainAddressMasking = exports.handleCopy = exports.paddingLeft = exports.generatekeyAndIv = exports.encryptString = exports.decryptString = exports.sortUserInfo = exports.generatekeyAndIvUsingUserID = exports.sessionIdHandler = exports.IPAddressAndLocation = exports.GenerateSourceID = void 0;
|
7
|
-
const generateSourceId_1 = require("./generateSourceId");
|
8
|
-
Object.defineProperty(exports, "GenerateSourceID", { enumerable: true, get: function () { return generateSourceId_1.GenerateSourceID; } });
|
9
|
-
const info_1 = require("./info");
|
10
|
-
Object.defineProperty(exports, "IPAddressAndLocation", { enumerable: true, get: function () { return info_1.IPAddressAndLocation; } });
|
11
|
-
Object.defineProperty(exports, "sessionIdHandler", { enumerable: true, get: function () { return info_1.sessionIdHandler; } });
|
12
|
-
Object.defineProperty(exports, "getTimezone", { enumerable: true, get: function () { return info_1.getTimezone; } });
|
13
|
-
Object.defineProperty(exports, "getGeoCoordinates", { enumerable: true, get: function () { return info_1.getGeoCoordinates; } });
|
14
|
-
Object.defineProperty(exports, "getGeoCoordinatesAndIPAddress", { enumerable: true, get: function () { return info_1.getGeoCoordinatesAndIPAddress; } });
|
15
|
-
const sortUserInfo_1 = require("./sortUserInfo");
|
16
|
-
Object.defineProperty(exports, "sortUserInfo", { enumerable: true, get: function () { return sortUserInfo_1.sortUserInfo; } });
|
17
|
-
const handleEncryption_1 = require("./handleEncryption");
|
18
|
-
Object.defineProperty(exports, "decryptString", { enumerable: true, get: function () { return handleEncryption_1.decryptString; } });
|
19
|
-
Object.defineProperty(exports, "encryptString", { enumerable: true, get: function () { return handleEncryption_1.encryptString; } });
|
20
|
-
Object.defineProperty(exports, "generatekeyAndIv", { enumerable: true, get: function () { return handleEncryption_1.generatekeyAndIv; } });
|
21
|
-
Object.defineProperty(exports, "paddingLeft", { enumerable: true, get: function () { return handleEncryption_1.paddingLeft; } });
|
22
|
-
Object.defineProperty(exports, "generatekeyAndIvUsingUserID", { enumerable: true, get: function () { return handleEncryption_1.generatekeyAndIvUsingUserID; } });
|
23
|
-
const copyText_1 = require("./copyText");
|
24
|
-
Object.defineProperty(exports, "handleCopy", { enumerable: true, get: function () { return copyText_1.handleCopy; } });
|
25
|
-
const chainAddressMasking_1 = __importDefault(require("./chainAddressMasking"));
|
26
|
-
exports.chainAddressMasking = chainAddressMasking_1.default;
|
27
|
-
const countryAndCurrencyData_1 = __importDefault(require("./countryAndCurrencyData"));
|
28
|
-
exports.UseCountryAndCurrencyData = countryAndCurrencyData_1.default;
|
29
|
-
const regex_1 = require("./regex");
|
30
|
-
Object.defineProperty(exports, "useRegExp", { enumerable: true, get: function () { return regex_1.useRegExp; } });
|
31
|
-
const getEnumName_1 = __importDefault(require("./getEnumName"));
|
32
|
-
exports.getEnumName = getEnumName_1.default;
|
33
|
-
const getCountryName_1 = require("./getCountryName");
|
34
|
-
Object.defineProperty(exports, "getCountryName", { enumerable: true, get: function () { return getCountryName_1.getCountryName; } });
|
35
|
-
const enumToOption_1 = __importDefault(require("./enumToOption"));
|
36
|
-
exports.enumsToOptions = enumToOption_1.default;
|
37
|
-
const generateOneLiner_1 = require("./generateOneLiner");
|
38
|
-
Object.defineProperty(exports, "generateOneLiner", { enumerable: true, get: function () { return generateOneLiner_1.generateOneLiner; } });
|
39
|
-
const maskingFunction_1 = require("./maskingFunction");
|
40
|
-
Object.defineProperty(exports, "maskMiddleOfString", { enumerable: true, get: function () { return maskingFunction_1.maskMiddleOfString; } });
|
41
|
-
const getStateByCountryCode_1 = require("./getStateByCountryCode");
|
42
|
-
Object.defineProperty(exports, "getStateByCountry", { enumerable: true, get: function () { return getStateByCountryCode_1.getStateByCountry; } });
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { IGeoCoordinates, IGeoCoordinatesAndIPAddress, IIPAddressAndLocation } from "../interfaces";
|
2
|
-
export declare const getTimezone: () => {
|
3
|
-
userTimeZone: string;
|
4
|
-
};
|
5
|
-
export declare const IPAddressAndLocation: (baseUrl: string) => Promise<IIPAddressAndLocation | Error>;
|
6
|
-
export declare const getGeoCoordinates: (baseUrl: string) => Promise<IGeoCoordinates>;
|
7
|
-
export declare const getGeoCoordinatesAndIPAddress: (baseUrl: string) => Promise<IGeoCoordinatesAndIPAddress>;
|
8
|
-
export declare const sessionIdHandler: () => any;
|
@@ -1,74 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.sessionIdHandler = exports.getGeoCoordinatesAndIPAddress = exports.getGeoCoordinates = exports.IPAddressAndLocation = exports.getTimezone = void 0;
|
7
|
-
const axios_1 = __importDefault(require("axios"));
|
8
|
-
const uuid_1 = require("uuid");
|
9
|
-
const dayjs_1 = __importDefault(require("dayjs"));
|
10
|
-
const getTimezone = () => {
|
11
|
-
const userTimeZone = `UTC ${(0, dayjs_1.default)().format("Z")}`;
|
12
|
-
return { userTimeZone };
|
13
|
-
};
|
14
|
-
exports.getTimezone = getTimezone;
|
15
|
-
const IPAddressAndLocation = async (baseUrl) => {
|
16
|
-
try {
|
17
|
-
const res = await axios_1.default.get(`${baseUrl}/v1/myipaddress`);
|
18
|
-
const data = JSON.parse(res.data);
|
19
|
-
return data;
|
20
|
-
}
|
21
|
-
catch (error) {
|
22
|
-
return new Error(error);
|
23
|
-
}
|
24
|
-
};
|
25
|
-
exports.IPAddressAndLocation = IPAddressAndLocation;
|
26
|
-
const getGeoCoordinates = async (baseUrl) => {
|
27
|
-
let ipAddressAndLocation = await (0, exports.IPAddressAndLocation)(baseUrl);
|
28
|
-
let geo_coordinates;
|
29
|
-
if (ipAddressAndLocation instanceof Error) {
|
30
|
-
console.error("Error:", ipAddressAndLocation.message);
|
31
|
-
}
|
32
|
-
else {
|
33
|
-
geo_coordinates.latitude = ipAddressAndLocation.latitude.toString() ?? "0";
|
34
|
-
geo_coordinates.longitude =
|
35
|
-
ipAddressAndLocation.longitude.toString() ?? "0";
|
36
|
-
geo_coordinates.position_description = `${ipAddressAndLocation.city ?? "N/A"}, ${ipAddressAndLocation.country ?? "N/A"}`;
|
37
|
-
return geo_coordinates;
|
38
|
-
}
|
39
|
-
};
|
40
|
-
exports.getGeoCoordinates = getGeoCoordinates;
|
41
|
-
const getGeoCoordinatesAndIPAddress = async (baseUrl) => {
|
42
|
-
let ipAddressAndLocation = await (0, exports.IPAddressAndLocation)(baseUrl);
|
43
|
-
let geo_coordinates = null;
|
44
|
-
let geo_coordinates_and_IPaddress;
|
45
|
-
if (ipAddressAndLocation instanceof Error) {
|
46
|
-
console.error("Error:", ipAddressAndLocation.message);
|
47
|
-
}
|
48
|
-
else {
|
49
|
-
if (!(Number(ipAddressAndLocation.latitude) == 0 &&
|
50
|
-
Number(ipAddressAndLocation.longitude) == 0)) {
|
51
|
-
geo_coordinates = {
|
52
|
-
latitude: ipAddressAndLocation.latitude.toString() ?? "0",
|
53
|
-
longitude: ipAddressAndLocation.longitude.toString() ?? "0",
|
54
|
-
position_description: `${ipAddressAndLocation.city ?? "N/A"}, ${ipAddressAndLocation.country ?? "N/A"}`,
|
55
|
-
};
|
56
|
-
}
|
57
|
-
geo_coordinates_and_IPaddress = {
|
58
|
-
geo_coordinates: geo_coordinates,
|
59
|
-
ip_address: ipAddressAndLocation.ip_address ?? "N/A",
|
60
|
-
};
|
61
|
-
}
|
62
|
-
return geo_coordinates_and_IPaddress;
|
63
|
-
};
|
64
|
-
exports.getGeoCoordinatesAndIPAddress = getGeoCoordinatesAndIPAddress;
|
65
|
-
const sessionIdHandler = () => {
|
66
|
-
try {
|
67
|
-
const uuid = (0, uuid_1.v4)();
|
68
|
-
return uuid;
|
69
|
-
}
|
70
|
-
catch (error) {
|
71
|
-
return error;
|
72
|
-
}
|
73
|
-
};
|
74
|
-
exports.sessionIdHandler = sessionIdHandler;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { ChainInfo } from "@keplr-wallet/types";
|
2
|
-
interface gasPriceStep {
|
3
|
-
low: number;
|
4
|
-
average: number;
|
5
|
-
high: number;
|
6
|
-
}
|
7
|
-
export declare const chainInfo: (rpc_url: string, rest_url: string, chain_id: string, chain_name: string, uggzGasPriceStep: gasPriceStep, uggez1GasPriceStep: gasPriceStep) => ChainInfo;
|
8
|
-
export {};
|
@@ -1,65 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.chainInfo = void 0;
|
4
|
-
// The Cosmos Hub Testnet chain parameters
|
5
|
-
const chainInfo = (rpc_url, rest_url, chain_id, chain_name, uggzGasPriceStep, uggez1GasPriceStep) => ({
|
6
|
-
chainId: chain_id,
|
7
|
-
chainName: chain_name,
|
8
|
-
rpc: rpc_url,
|
9
|
-
rest: rest_url,
|
10
|
-
chainSymbolImageUrl: "https://ggez.one/images/assets/chain.png",
|
11
|
-
nodeProvider: {
|
12
|
-
name: "GGEZ1 Foundation DAO LLC.",
|
13
|
-
email: "ggez@ggez.one",
|
14
|
-
website: "https://ggez.one",
|
15
|
-
},
|
16
|
-
bip44: {
|
17
|
-
coinType: 118,
|
18
|
-
},
|
19
|
-
bech32Config: {
|
20
|
-
bech32PrefixAccAddr: "ggez",
|
21
|
-
bech32PrefixAccPub: "ggez" + "pub",
|
22
|
-
bech32PrefixValAddr: "ggez" + "valoper",
|
23
|
-
bech32PrefixValPub: "ggez" + "valoperpub",
|
24
|
-
bech32PrefixConsAddr: "ggez" + "valcons",
|
25
|
-
bech32PrefixConsPub: "ggez" + "valconspub",
|
26
|
-
},
|
27
|
-
currencies: [
|
28
|
-
{
|
29
|
-
coinDenom: "GGEZ1",
|
30
|
-
coinMinimalDenom: "uggez1",
|
31
|
-
coinDecimals: 6,
|
32
|
-
coinImageUrl: "https://ggez.one/images/assets/ggez1.png",
|
33
|
-
},
|
34
|
-
{
|
35
|
-
coinDenom: "GGZ",
|
36
|
-
coinMinimalDenom: "uggz",
|
37
|
-
coinDecimals: 6,
|
38
|
-
coinImageUrl: "https://ggez.one/images/assets/ggz.png",
|
39
|
-
},
|
40
|
-
],
|
41
|
-
feeCurrencies: [
|
42
|
-
{
|
43
|
-
coinDenom: "GGEZ1",
|
44
|
-
coinMinimalDenom: "uggez1",
|
45
|
-
coinDecimals: 6,
|
46
|
-
gasPriceStep: uggez1GasPriceStep,
|
47
|
-
coinImageUrl: "https://ggez.one/images/assets/ggez1.png",
|
48
|
-
},
|
49
|
-
{
|
50
|
-
coinDenom: "GGZ",
|
51
|
-
coinMinimalDenom: "uggz",
|
52
|
-
coinDecimals: 6,
|
53
|
-
gasPriceStep: uggzGasPriceStep,
|
54
|
-
coinImageUrl: "https://ggez.one/images/assets/ggz.png",
|
55
|
-
},
|
56
|
-
],
|
57
|
-
stakeCurrency: {
|
58
|
-
coinDenom: "GGEZ1",
|
59
|
-
coinMinimalDenom: "uggez1",
|
60
|
-
coinDecimals: 6,
|
61
|
-
coinImageUrl: "https://ggez.one/images/assets/ggez1.png",
|
62
|
-
},
|
63
|
-
features: ["cosmwasm"],
|
64
|
-
});
|
65
|
-
exports.chainInfo = chainInfo;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|