Add method for sending transfer requests.

This commit is contained in:
Spencer Ofwiti
2021-03-03 16:43:33 +03:00
parent 0d7f4aae13
commit d9990a2760
12 changed files with 1018 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
export const environment = {
production: true,
bloxbergChainId: 8996,
cicAuthUrl: 'http://localhost:4444',
cicMetaUrl: 'http://localhost:63380',
publicKeysUrl: 'http://localhost:8000',
@@ -10,5 +11,6 @@ export const environment = {
cicEthUrl: 'http://localhost:63314',
contractAddress: '0xd0097a901AF4ac2E63A5b6E86be8Ad91f10b05d7',
registryAddress: '0xf374d7B507767101a4bf3bA2a6B99AC737A44f6d',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
transferAuthorizationAddress: '0xB542fd8bCb777f058997b7D8D06381A0571BF224'
};

View File

@@ -4,6 +4,7 @@
export const environment = {
production: false,
bloxbergChainId: 8996,
cicAuthUrl: 'http://localhost:4444',
cicMetaUrl: 'http://localhost:63380',
publicKeysUrl: 'http://localhost:8000',
@@ -14,7 +15,8 @@ export const environment = {
cicEthUrl: 'http://localhost:63314',
contractAddress: '0xd0097a901AF4ac2E63A5b6E86be8Ad91f10b05d7',
registryAddress: '0xf374d7B507767101a4bf3bA2a6B99AC737A44f6d',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
transferAuthorizationAddress: '0xB542fd8bCb777f058997b7D8D06381A0571BF224'
};
/*