Skip to content

Commit

Permalink
Merge pull request #878 from near-daos/fix/fc-template-transfer
Browse files Browse the repository at this point in the history
fix(fc templates): fix transfer
  • Loading branch information
karpovdmitryod authored Apr 5, 2022
2 parents 8e9e044 + 7514b27 commit e2be7ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export async function getTransferMintbaseNFTProposal(
{
method_name: 'nft_batch_transfer',
args,
deposit: '1000000000000000000',
deposit: '1000000000000000000000000',
gas: formatGasValue(actionsGas).toString(),
},
],
Expand Down Expand Up @@ -275,7 +275,7 @@ export async function getSwapsOnRefProposal(
{
method_name: 'ft_transfer_call',
args,
deposit: '1000000000000000000',
deposit: '1000000000000000000000000',
gas: formatGasValue(actionsGas).toString(),
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('proposalObjectHelpers', () => {
actions: [
{
args: 'eyJ0b2tlbl9pZHMiOltbIjEyMyIsInRhcmdldCJdXX0=',
deposit: '1000000000000000000',
deposit: '1000000000000000000000000',
gas: '5000000000000',
method_name: 'nft_batch_transfer',
},
Expand Down Expand Up @@ -177,7 +177,7 @@ describe('proposalObjectHelpers', () => {
{
args:
'eyJhY3Rpb25zIjpbeyJwb29sX2lkIjoicG9vbElkIiwidG9rZW5faW4iOiJUMSIsInRva2VuX291dCI6IlQyIiwiYW1vdW50X2luIjoxMCwibWluX2Ftb3VudF9vdXQiOjEwMH1dfQ==',
deposit: '1000000000000000000',
deposit: '1000000000000000000000000',
gas: '5000000000000',
method_name: 'ft_transfer_call',
},
Expand Down

0 comments on commit e2be7ed

Please sign in to comment.