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.
15 lines
510 B
15 lines
510 B
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, |
|
}); |
|
} |
|
|
|
// return the op that should be sent to the contract on deployment, can be "null" so send an empty message |
|
export function initMessage() { |
|
return main.increment(); |
|
}
|
|
|