@inco/js 0.1.22 → 0.1.23

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/binary.d.ts CHANGED
@@ -15,3 +15,6 @@ export declare function bytesToHex(bs: Uint8Array): Hex;
15
15
  export declare const Bytes32: Schema.brand<Schema.filter<Schema.transformOrFail<Schema.Union<[typeof Schema.String, Schema.refine<object & Uint8Array<ArrayBufferLike>, Schema.Schema<object, object, never>>]>, Schema.TemplateLiteral<`0x${string}`>, never>>, "Bytes32">;
16
16
  export declare function asBytes32(x: BytesIsh): Bytes32;
17
17
  export type Bytes32 = typeof Bytes32.Type;
18
+ export type Address = typeof Address.Type;
19
+ export declare const Address: Schema.brand<Schema.filter<Schema.TemplateLiteral<`0x${string}`>>, "Address">;
20
+ export declare function parseAddress(address: string): Address;