@ton/core
Version:
Core TypeScript library that implements low level primitives for TON blockchain.
18 lines (16 loc) • 655 B
text/typescript
/**
* Copyright (c) Whales Corp.
* All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { beginCell } from "../boc/Builder";
import { Address } from "./Address";
import { contractAddress } from "./contractAddress";
describe('contractAddress', () => {
it('should resolve address correctly', () => {
let addr = contractAddress(0, { code: beginCell().storeUint(1, 8).endCell(), data: beginCell().storeUint(2, 8).endCell() });
expect(addr.equals(Address.parse('EQCSY_vTjwGrlvTvkfwhinJ60T2oiwgGn3U7Tpw24kupIhHz')));
});
});