how can i send identity structure from fuel-ts??
I hope to receive the structure in the contract.
what is the difference between the structure identity and address?
I tried to send using fuel’s dynamic typing, but without success either
export type IdentityInput = Enum<{ Address: AddressInput, ContractId: ContractIdInput }>;
export type AddressInput = { value: string };
export type ContractIdInput = { value: string };
but I was not successful