You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
341 B
11 lines
341 B
3 years ago
|
import * as main from "../contracts/main";
|
||
|
import { Address } from "ton";
|
||
|
|
||
|
// return the init Cell of the contract storage (according to load_data() contract method)
|
||
|
export function initData() {
|
||
|
return main.data({
|
||
|
ownerAddress: Address.parseFriendly("EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N").address,
|
||
|
counter: 0,
|
||
|
});
|
||
|
}
|