This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Description
const schema = {
type: 'object',
properties: {
from: {
format: 'address',
},
to: {
oneOf: [{ format: 'string' }, { type: 'null' }],
},
},
};
const data = {
from: '0x7ed0e85b8e1e925600b4373e6d108f34ab38a401',
to: 123,
};
const res = format(schema, data);
// res { from: '0x7ed0e85b8e1e925600b4373e6d108f34ab38a401', to: 123 }
Actual Behaviour:
to is not formatted
Expected Behaviour:
to should be formatted to a string