Adding Addresses
Add Addresses
To add an address to an existing EIN, call the addAssociatedAddressDelegated
function on the Identity Registry.
To remain a trustless process, adding an address requires two signatures - one from a current Associated Address
, and one from the Associated Address
to be claimed.
To add an Associated Address
, call the addAddress
function on the Snowflake smart contract with the approvingAddress
, addressToAdd
, r
,s
,v
signatures from both addresses, and the timestamp
of the function call.
Signatures should follow the example format:
ARGUMENTS
Parameter
Type
Description
approvingAddress
address
A current Associated Address
of the EIN
.
addressToAdd
address
Address to be added to the user's EIN
.
[r
], [s
], [v
] signatures
[bytes32
], [bytes32
], [uint8
]
Signed messages from each address as required in the example format.
timestamp
uint
Timestamp of the function call - to prevent replay attacks.
Last updated